You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -43,8 +48,9 @@ please see our [contributor guidelines](https://github.com/psi4/psi4numpy/blob/m
43
48
# Have Psi4conda installer (http://psicode.org/downloads.html)
44
49
>>> bash psi4conda-{various}.sh
45
50
# Check `psi4` command in path; adjust path if needed
46
-
# **IF** using DFT tutorials,
47
-
>>> conda update psi4 -c psi4/label/dev
51
+
# **IF** using DFT tutorials (or a few newer specialized integrals), after above, create a separate environment within for newer psi4:
52
+
>>> conda create -n p4env psi4 -c psi4/label/dev
53
+
>>> source activate p4env
48
54
```
49
55
* Option 2 (easy): Download Conda package according to [instructions](http://psicode.org/psi4manual/1.1/conda.html#how-to-install-a-psi4-binary-into-an-ana-miniconda-distribution)
50
56
```
@@ -53,20 +59,19 @@ please see our [contributor guidelines](https://github.com/psi4/psi4numpy/blob/m
53
59
>>> bash
54
60
>>> source activate p4env
55
61
# Check `psi4` command in path; adjust path if needed
56
-
# **IF** using DFT tutorials,
57
-
>>> conda update psi4 -c psi4/label/dev
62
+
# **IF** using DFT tutorials (or a few newer specialized integrals), replace above line with this:
63
+
>>> conda create -n p4env psi4 -c psi4/label/dev
58
64
```
59
-
* Option 3 (medium): [Clone source](https://github.com/psi4/psi4) and [compile](https://github.com/psi4/psi4/blob/master/CMakeLists.txt#L16-L123) according to [instructions](http://psicode.org/psi4manual/master/build_faq.html#configuring-building-and-installing-psifour-via-source)
65
+
* Option 3 (medium): [Clone source](https://github.com/psi4/psi4) and [compile](https://github.com/psi4/psi4/blob/master/CMakeLists.txt#L16-L143) according to [instructions](http://psicode.org/psi4manual/master/build_faq.html#configuring-building-and-installing-psifour-via-source)
60
66
```
61
67
# Get Psi4 source
62
68
>>> git clone https://github.com/psi4/psi4.git
63
69
>>> git checkout v1.1
64
70
>>> cmake -H. -Bobjdir -Doption=value ...
65
71
>>> cd objdir && make -j`getconf _NPROCESSORS_ONLN`
66
72
# Find `psi4` command at objdir/stage/<TAB>/<TAB>/.../bin/psi4; adjust path if needed
67
-
# **IF** using DFT tutorials,
73
+
# **IF** using DFT tutorials (or a few newer specialized integrals), replace above line with this:
0 commit comments