File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed
Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -48,23 +48,24 @@ conda install -c conda-forge fortran-compiler --file PySolid/requirements.txt --
4848conda create --name pysolid fortran-compiler --file PySolid/requirements.txt --file PySolid/tests/requirements.txt
4949conda activate pysolid
5050
51- # option 3: have a Fortran compiler already installed and use pip to install the rest dependencies
51+ # option 3: have a Fortran compiler already installed and use pip to install the dependencies
5252python -m pip install -r PySolid/requirements.txt -r PySolid/tests/requirements.txt
5353```
5454
5555##### c. Install PySolid
5656
5757``` bash
5858# option 1: use pip to install pysolid into the current environment
59- python -m pip install PySolid
59+ python -m pip install ./ PySolid
6060
6161# option 2: use pip to install pysolid in develop mode (editable) into the current environment
62- python -m pip install -e PySolid
62+ python -m pip install -e ./ PySolid
6363
6464# option 3: manually compile the Fortran code and setup environment variable
6565cd PySolid/src/pysolid
6666f2py -c -m solid solid.for
67- export PYTHONPATH=${PYTHONPATH} :~ /tools/PySolid
67+ # Replace <path-to-folder> with proper path to PySolid main folder
68+ export PYTHONPATH=${PYTHONPATH} :< path-to-folder> /PySolid/src
6869```
6970
7071##### d. Test the installation
You can’t perform that action at this time.
0 commit comments