From b6b833d2a70c3ce55c7d261910d55ff5f24d2077 Mon Sep 17 00:00:00 2001 From: Josh Meisels Date: Sun, 26 Mar 2017 22:41:12 -0700 Subject: [PATCH] Add step to install Six and clarify cloning repo Based on my experience, if you go back to Step 4 in the general readme, it will fail due to Six not being installed. Added step to manually install Six. Also added clarification on the command to clone the Algo repo. --- docs/WINDOWS.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/WINDOWS.md b/docs/WINDOWS.md index 3a53f7e2..cc04d039 100644 --- a/docs/WINDOWS.md +++ b/docs/WINDOWS.md @@ -25,8 +25,12 @@ Install additional packages: `sudo apt-get update && sudo apt-get install python-pip python-setuptools build-essential libssl-dev libffi-dev python-dev python-virtualenv git -y` +Install Six: + +`pip install six` + Clone the Algo repository: -`https://github.com/trailofbits/algo && cd algo` +`git clone https://github.com/trailofbits/algo && cd algo` Now, you can go through the [README](https://github.com/trailofbits/algo#deploy-the-algo-server) (start from the 4th step) and deploy your Algo server!