Last active
February 5, 2020 00:03
-
-
Save austinsonger/92b156d3d31e4064d4cf7c9ad2a1b962 to your computer and use it in GitHub Desktop.
Setup Algo VPN (Debian-Based System)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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