Skip to content

Commit

Permalink
Updated installation guide to use pip (#418)
Browse files Browse the repository at this point in the history
  • Loading branch information
Carreau authored Oct 21, 2021
1 parent 6246354 commit c726bf2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ Installation
You can install the library by running the following command,

```python
python3 setup.py install
python -m pip install .
```

For development purposes, you can use the option `develop` as shown below,

```python
python3 setup.py develop
python -m pip install -e .
```

Make sure that your python version is above `3.5`.
Expand Down

0 comments on commit c726bf2

Please sign in to comment.