Skip to content

Commit 4170bc3

Browse files
committed
Merge branch 'master' of https://github.com/ODM2/ODM2PythonAPI
.
2 parents 83faa0a + 27316e5 commit 4170bc3

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,19 +11,20 @@ This work was supported by National Science Foundation Grants [EAR-1224638](http
1111

1212
Currently the easiest and most reliable way to install the ODM2 Python API (`odm2api`) is using the [Conda package management system](http://conda.pydata.org/docs/) via either [Anaconda](https://www.continuum.io/downloads) or [Miniconda](http://conda.pydata.org/miniconda.html). To create a new `odm2api` environment, first download the conda environment file [condaenvironment_1.yml](https://raw.githubusercontent.com/ODM2/ODM2PythonAPI/master/condaenvironment_1.yml). Then, on a terminal shell:
1313

14-
1. Go to the directory where `condaenvironment_1.yml` was downloaded.
15-
2. Create a new conda environment. This command will create an environment called 'odm2api_env1':
14+
1. Add conda to the PATH; on MacOSX and Linux, it's something like `export PATH=$HOME/miniconda/bin:$PATH`, but the exact path may vary.
15+
2. Go to the directory where `condaenvironment_1.yml` was downloaded.
16+
3. Create a new conda environment. This command will create an environment called 'odm2api_env1':
1617

1718
```bash
1819
conda env create -f condaenvironment_1.yml
1920
```
20-
3. Activate the new environment:
21+
4. Activate the new environment:
2122

2223
```bash
2324
activate odm2api_env1 # On Windows
24-
source activate odm2api_env1 # On OS X or Linux
25+
source activate odm2api_env1 # On MacOSX or Linux
2526
```
26-
4. Install the `odm2api` package into the environment:
27+
5. Install the `odm2api` package into the environment:
2728

2829
```bash
2930
pip install --process-dependency-links git+https://github.com/ODM2/ODM2PythonAPI.git

0 commit comments

Comments
 (0)