Skip to content

Instantly share code, notes, and snippets.

@austinsonger
Created January 3, 2020 20:47
Show Gist options
  • Save austinsonger/48a0a23f58108d856eec42b3488853ad to your computer and use it in GitHub Desktop.
Save austinsonger/48a0a23f58108d856eec42b3488853ad to your computer and use it in GitHub Desktop.
Setup Algo VPN (RedHat-Based System)
sudo yum -y install epel-release
sudo yum install -y python36-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