Skip to content

Commit

Permalink
Merge pull request #19 from peastman/path
Browse files Browse the repository at this point in the history
README describes how to identify OpenMM directory
  • Loading branch information
peastman authored Jan 15, 2021
2 parents d00a0fe + d79dc42 commit a3dca1d
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,14 @@ level directory of this project as the source directory.
3. Press "Configure". (Do not worry if it produces an error message about not being able to find PyTorch.)

4. Set OPENMM_DIR to point to the directory where OpenMM is installed. This is needed to locate
the OpenMM header files and libraries.
the OpenMM header files and libraries. If you are unsure of what directory this is, the following
script will print it out.

```
from simtk.openmm import *
import os
print(os.path.dirname(version.openmm_library_path))
```

5. Set PYTORCH_DIR to point to the directory where you installed the LibTorch.

Expand Down

0 comments on commit a3dca1d

Please sign in to comment.