Skip to content

Commit fc56fba

Browse files
committed
Fix the documentation
1 parent ec425ea commit fc56fba

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

download.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,6 @@ For example
143143
```
144144
FC=gfortran LDSHARED=gfortran pip install cellconstructor python-sscha
145145
```
146-
For the development version of the code, substitute the pip call with the python setup.py install.
147146

148147
### Running the test suite
149148

@@ -169,9 +168,8 @@ To install the GitHub code that enables the MPI parallelization also without the
169168
```
170169
git clone https://github.com/SSCHAcode/tdscha.git
171170
cd tdscha
172-
MPICC=mpicc python setup.py install
171+
pip install .
173172
```
174-
where mpicc is a valid mpi c compiler (the specification of MPICC can be dropped, but parallelization will not be available aside for the julia mode discussed below).
175173

176174
### MPI Parallelization for TDSCHA
177175

@@ -185,7 +183,7 @@ pip install mpi4py
185183
```
186184
The parallelization is automatically enabled in the julia version and if mpi4py is available. However, to run the parallel code without the julia speedup, you need to recompile the code from the github repository as (not the version installed with pip)
187185
```
188-
MPICC=mpicc python setup.py install
186+
pip install .
189187
```
190188
Make sure that no error is displayed at the end of the installation and that the write PARALLEL ENVIRONMENT DECTECTED SUCCESFULLY is displayed. Note that if using the Julia enhanced version, the last command is not required, and you can install only mpi4py.
191189

0 commit comments

Comments
 (0)