Switch to python3 -m pip install instead of calling pip directly, move cd docs closer to make commands.

This commit is contained in:
Seak Pek Chhan
2017-11-21 14:02:07 -05:00
parent d1bed1b9cc
commit 86aebbcaea

View File

@@ -213,13 +213,13 @@ pytest jupyterhub/tests
Install the dependencies: Install the dependencies:
```bash ```bash
cd docs python3 -m pip install -r docs/requirements.txt
pip3 install -r requirements.txt
``` ```
Build the docs: Build the docs:
```bash ```bash
cd docs
make clean make clean
make html make html
``` ```