From 917bf99ea3e773dd194d6344d5460ac4bc433f46 Mon Sep 17 00:00:00 2001 From: Thomas Korrison Date: Tue, 1 Dec 2015 14:09:50 +0000 Subject: [PATCH 1/2] Update developing-locally.rst --- docs/developing-locally.rst | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/developing-locally.rst b/docs/developing-locally.rst index 349c9120..b3c533ef 100644 --- a/docs/developing-locally.rst +++ b/docs/developing-locally.rst @@ -9,7 +9,11 @@ The steps below will get you up and running with a local development environment * virtualenv * PostgreSQL -First make sure to create and activate a virtualenv_, then open a terminal at the project root and install the requirements for local development:: +First make sure to create and activate a virtualenv_, then open a terminal at the project root and install the os dependencies:: + + $ ./install_os_dependencies.sh install + +Then install the requirements for your local development:: $ pip install -r requirements/local.txt From a304e466a5e9252e78ba63379a303813699029b1 Mon Sep 17 00:00:00 2001 From: Thomas Korrison Date: Tue, 1 Dec 2015 14:25:55 +0000 Subject: [PATCH 2/2] Update developing-locally.rst --- docs/developing-locally.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/developing-locally.rst b/docs/developing-locally.rst index b3c533ef..44fb6b7f 100644 --- a/docs/developing-locally.rst +++ b/docs/developing-locally.rst @@ -11,7 +11,7 @@ The steps below will get you up and running with a local development environment First make sure to create and activate a virtualenv_, then open a terminal at the project root and install the os dependencies:: - $ ./install_os_dependencies.sh install + $ sudo ./install_os_dependencies.sh install Then install the requirements for your local development::