From 7120e3211205af85d20e2ba0f6c90504f39f1529 Mon Sep 17 00:00:00 2001 From: Chris Date: Wed, 9 May 2018 22:18:48 -0400 Subject: [PATCH] Add instructions for environment setup environment_setup.txt added --- environment_setup.txt | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 environment_setup.txt diff --git a/environment_setup.txt b/environment_setup.txt new file mode 100644 index 0000000..6a96028 --- /dev/null +++ b/environment_setup.txt @@ -0,0 +1,21 @@ +1. Use the pip tool to install virtualenv + +http://docs.python-guide.org/en/latest/dev/virtualenvs/ + +2. Create a virtual environment in an empty directory: + +virtualenv -p + +3. cd into the directory you just created a virtual environment in, and clone our GitHub repo + +4. Activate the virtual environment + +source bin/activate + +5. cd into the repository root directory, install all dependencies using pip + +pip -r requirements.txt + +6. All set! + +