From 86aebbcaea61fe71ff02103b9d9ae4f9be61bcc2 Mon Sep 17 00:00:00 2001 From: Seak Pek Chhan Date: Tue, 21 Nov 2017 14:02:07 -0500 Subject: [PATCH] Switch to python3 -m pip install instead of calling pip directly, move cd docs closer to make commands. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 045ef7e5..9ae49836 100644 --- a/README.md +++ b/README.md @@ -213,13 +213,13 @@ pytest jupyterhub/tests Install the dependencies: ```bash -cd docs -pip3 install -r requirements.txt +python3 -m pip install -r docs/requirements.txt ``` Build the docs: ```bash +cd docs make clean make html ```