Created
January 3, 2020 20:47
-
-
Save austinsonger/48a0a23f58108d856eec42b3488853ad to your computer and use it in GitHub Desktop.
Setup Algo VPN (RedHat-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 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