Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix the tutorial #77

Merged
merged 4 commits into from
Jun 10, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions tutorials/openmm-torch-nnpops.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
"source": [
"!pip install -q condacolab\n",
"import condacolab\n",
"condacolab.install()"
"condacolab.install_miniconda()"
]
},
{
Expand All @@ -82,12 +82,11 @@
},
"outputs": [],
"source": [
"# Note: Remove \"mmh\" when NNPOps in available on conda-forge (https://github.com/openmm/NNPOps/issues/26)\n",
"# Note: \"cudatoollit=11.2\" is need to override a pinning in conda-colab\n",
"!conda install -q -c conda-forge -c mmh \\\n",
"# NOTE: PyTorch pinned because https://github.com/conda-forge/openmm-torch-feedstock/issues/20\n",
"!conda install -q -c conda-forge \\\n",
" openmm-torch nnpops torchani openmmtools \\\n",
" cudatoolkit=11.2 \\\n",
" &> /dev/null # Comment this line to see the installaion logs"
" pytorch=1.11 \\\n",
" &> /dev/null # Comment this line to see a log\""
]
},
{
Expand Down