Skip to content

Commit c726bf2

Browse files
authored
Updated installation guide to use pip (#418)
1 parent 6246354 commit c726bf2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ Installation
1616
You can install the library by running the following command,
1717

1818
```python
19-
python3 setup.py install
19+
python -m pip install .
2020
```
2121

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

2424
```python
25-
python3 setup.py develop
25+
python -m pip install -e .
2626
```
2727

2828
Make sure that your python version is above `3.5`.

0 commit comments

Comments
 (0)