Skip to content

Commit 83a893d

Browse files
authored
Fix setup.py reference (#759)
1 parent bcf0bde commit 83a893d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ srcclean:
6767

6868
myhtml:
6969
make srcclean
70-
cd .. && python setup.py install && cd docs
70+
cd .. && pip install . && cd docs
7171
python qe_apidoc.py
7272
make html
7373

docs/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ In order to generate the documentation, follow these steps:
2424
1. Install the `quantecon` python library locally. Do to this enter the commands below:
2525
```
2626
cd ..
27-
python setup.py install
27+
pip install .
2828
cd docs
2929
```
3030
2. From this directory, execute the local file `qe_apidoc.py` (for an explanation of what the file does, see the module level docstring in the file)
@@ -50,7 +50,7 @@ srcclean:
5050
5151
myhtml:
5252
make srcclean
53-
cd .. && python setup.py install && cd docs
53+
cd .. && pip install . && cd docs
5454
python qe_apidoc.py
5555
make html
5656
```

0 commit comments

Comments
 (0)