Skip to content

Instantly share code, notes, and snippets.

@tonigi
Last active October 31, 2019 13:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tonigi/16a20bef490eae6ffff77c8b931e704e to your computer and use it in GitHub Desktop.
Save tonigi/16a20bef490eae6ffff77c8b931e704e to your computer and use it in GitHub Desktop.
Unofficial and unsupported way to use HTMD on OSX

Unofficial workaround to use HTMD on OSX

(Current as of Aug 2019)

Installation

  1. Clone the official HTMD repository.

    git clone https://github.com/Acellera/htmd
    cd htmd
    
  2. Create an environment for htmd:

    conda create -n htmd pip
    conda activate htmd
    
  3. Install its dependencies:

    cd package/htmd-deps/
    cp DEPENDENCIES DEPENDENCIES_OSX
    # Comment out the moleculekit and acemd3 dependencies
    conda install -c acellera -c psi4 --file DEPENDENCIES_OSX
    
  4. Install the required moleculekit

    pip install https://codeload.github.com/Acellera/moleculekit/zip/master
    

Usage

Activate and set the Python path.

conda activate htmd
export PYTHONPATH=<REPODIR>
ipython    # or jupyter etc.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment