We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 523067d commit 13ae401Copy full SHA for 13ae401
source/user/install.md
@@ -113,7 +113,14 @@ If you have a [Conda](https://conda.io/docs/) (or
113
package can be installed from the Conda cloud (for Linux and macOS
114
systems),
115
```bash
116
-conda install -c pyscf pyscf
+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
124
```
125
126
<!--
0 commit comments