Skip to content

Commit 13ae401

Browse files
authored
update conda install command (#152)
* update conda install command * update
1 parent 523067d commit 13ae401

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

source/user/install.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,14 @@ If you have a [Conda](https://conda.io/docs/) (or
113113
package can be installed from the Conda cloud (for Linux and macOS
114114
systems),
115115
```bash
116-
conda install -c pyscf pyscf
116+
conda install -c pyscf -c conda-forge pyscf
117+
```
118+
119+
To prevent potential conflict problems, it is recommended to enable the conda-forge channel in the ``.condarc``,
120+
or create an environment enabling conda-forge like
121+
```bash
122+
conda create -n pyscf-env -c conda-forge -c pyscf python=3.9 pyscf
123+
conda activate pyscf-env
117124
```
118125

119126
<!--

0 commit comments

Comments
 (0)