Skip to content

Instantly share code, notes, and snippets.

@austinsonger
Last active February 5, 2020 00:03
Show Gist options
  • Save austinsonger/92b156d3d31e4064d4cf7c9ad2a1b962 to your computer and use it in GitHub Desktop.
Save austinsonger/92b156d3d31e4064d4cf7c9ad2a1b962 to your computer and use it in GitHub Desktop.
Setup Algo VPN (Debian-Based System)
sudo apt update -y && sudo apt upgrade -y
sudo apt install -y python3-virtualenv
git clone https://github.com/trailofbits/algo.git && cd algo
## Install ALGO Env.
python3 -m virtualenv --python="$(command -v python3)" .env &&
source .env/bin/activate &&
python3 -m pip install -U pip virtualenv &&
python3 -m pip install -r requirements.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment