Skip to content

Commit

Permalink
docs: Add instructions for using conda package manager
Browse files Browse the repository at this point in the history
  • Loading branch information
Sieboldianus committed Mar 3, 2020
1 parent 5439839 commit bd58d2b
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions docs/quick-guide.md
Expand Up @@ -29,4 +29,20 @@ cd lbsntransform
python setup.py install
```

# Installation with conda

If you have conda package manager you can install lbsntransform dependencies, OS independent, with the `environment.yml` that is available in the lbsntransform repository:

```bash
git clone https://github.com/Sieboldianus/lbsntransform.git
cd lbsntransform
conda env create -f environment.yml
```

..and then install lbsntransform directly:
```bash
conda activate lbsntransform
python setup.py install --no-deps
```


0 comments on commit bd58d2b

Please sign in to comment.