diff --git a/docs/Makefile b/docs/Makefile index 11e5a7bb..59505d95 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -67,7 +67,7 @@ srcclean: myhtml: make srcclean - cd .. && python setup.py install && cd docs + cd .. && pip install . && cd docs python qe_apidoc.py make html diff --git a/docs/README.md b/docs/README.md index 13c5b37d..5beefa47 100644 --- a/docs/README.md +++ b/docs/README.md @@ -24,7 +24,7 @@ In order to generate the documentation, follow these steps: 1. Install the `quantecon` python library locally. Do to this enter the commands below: ``` cd .. -python setup.py install +pip install . cd docs ``` 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: myhtml: make srcclean - cd .. && python setup.py install && cd docs + cd .. && pip install . && cd docs python qe_apidoc.py make html ```