Skip to content

Commit 7fac8c0

Browse files
Update installation docs (#358)
1 parent bbd51e0 commit 7fac8c0

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

docs/installation.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# Installation
22

3-
## Installing using conda
3+
## Installing using mamba
44

5-
The recommended way to install QCSubmit is via the `conda` package manger:
5+
The recommended way to install QCSubmit is via the `mamba` package manger:
66

77
```bash
8-
conda install -c conda-forge openff-qcsubmit
8+
mamba install -c conda-forge openff-qcsubmit
99
```
1010

1111
If you do not have Conda installed, see the [OpenFF installation guide](openff.docs:install)
@@ -15,7 +15,7 @@ If you do not have Conda installed, see the [OpenFF installation guide](openff.d
1515
If you have access to the OpenEye toolkits (namely `oechem`, `oequacpac`, `oeomega` and `oedepict`), we recommend installing these also as these can speed up various operations performed by this framework significantly:
1616

1717
```bash
18-
conda install -c openeye openeye-toolkits
18+
mamba install -c openeye openeye-toolkits
1919
```
2020

2121
## Installing from source
@@ -30,12 +30,12 @@ cd openff-qcsubmit
3030
Create a custom conda environment which contains the required dependencies and activate it:
3131

3232
```bash
33-
conda env create --name openff-qcsubmit --file devtools/conda-envs/basic.yaml
34-
conda activate openff-qcsubmit
33+
mamba env create --name openff-qcsubmit --file devtools/conda-envs/basic.yaml
34+
mamba activate openff-qcsubmit
3535
```
3636

3737
Finally, install the `openff-qcsubmit` package into the current environment:
3838

3939
```bash
40-
python setup.py develop
40+
python -m pip install -e .
4141
```

0 commit comments

Comments
 (0)