Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Corrections to the installation instructions in docs & README #4

Merged
merged 1 commit into from
Jul 24, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,8 @@ Similarly for Python 2.7, use
conda env create -f environment_py2.yml
```

Finally install IPART using either:
```
python setup.py develop
```
or
Finally install IPART using:

```
pip install -e .
```
Expand Down
6 changes: 3 additions & 3 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ After Anaconda installation, create a working environment:

This creates a Python environment named "ipartpy3" with Python version 3.7.

Then install the above listed dependencies, e.g.
Then install the dependencies listed below, e.g.
::

conda install numpy
Expand Down Expand Up @@ -129,12 +129,12 @@ Install from conda (experimental)
For py2:
::

conda create -n ipartpy2 python=2.7 -c guangzhi -c conda-forge ipart
conda create -n ipartpy2 python=2.7 ipart -c guangzhi -c conda-forge

For py3 (good luck with ``cdms2`` and ``cdutil``):
::

conda create -n ipartpy3 python=3.7 -c guangzhi -c conda-forge ipart
conda create -n ipartpy3 python=3.7 ipart -c guangzhi -c conda-forge

Then activate the environment:
::
Expand Down