Skip to content

Commit

Permalink
docs: Add instructions to use conda together with no-dependencies and…
Browse files Browse the repository at this point in the history
… --editable flags
  • Loading branch information
Sieboldianus committed Jul 21, 2023
1 parent 831e1f7 commit d8143db
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions docs/quick-guide.md
Expand Up @@ -26,8 +26,9 @@ There are many ways to install python tools:
1. The recommended way to install the package is with [conda](#conda)
2. If you need to install with pip, it is recommended to
- install all dependencies first (e.g. Windows users: use
[Gohlke wheels](<https://www.lfd.uci.edu/~gohlke/pythonlibs/>) if available) and then run:
- `pip install tagmaps --no-dependencies`
[Gohlke wheels](<https://www.lfd.uci.edu/~gohlke/pythonlibs/>) if available), or
`conda env create -f environment.yml`, and then run:
- `pip install tagmaps --no-dependencies` or
- or clone the repository, and install locally with:
- `pip install --no-dependencies --editable .`

Expand Down

0 comments on commit d8143db

Please sign in to comment.