mirror of
https://github.com/trailofbits/algo.git
synced 2025-06-05 22:54:01 +02:00
Update to deploy-to-ubuntu.md (#628)
* Update to deploy-to-ubuntu.md A fresh install (Off CD / ISO) doesn't include python-pip or python virtualenv module. The fixes above take care of the additional requirements, as well as updating pip. * Update deploy-to-ubuntu.md Fix Typo
This commit is contained in:
parent
d08e525906
commit
e01521bbf4
1 changed files with 6 additions and 2 deletions
|
@ -8,9 +8,13 @@ tl;dr:
|
|||
|
||||
```shell
|
||||
sudo apt-get install software-properties-common && sudo apt-add-repository ppa:ansible/ansible
|
||||
sudo apt-get update && sudo apt-get install ansible
|
||||
sudo apt-get update && sudo apt-get install ansible python-pip
|
||||
pip install virtualenv
|
||||
pip install --upgrade pip
|
||||
git clone https://github.com/trailofbits/algo
|
||||
cd algo && ./algo
|
||||
cd algo
|
||||
python -m virtualenv env && source env/bin/activate && python -m pip install -U pip && python -m pip install -r requirements.txt
|
||||
./algo
|
||||
```
|
||||
|
||||
**Warning**: If you run Algo on your existing server, the iptables rules will be overwritten. If you don't want to overwrite the rules, you must deploy via `ansible-playbook` and skip the `iptables` tag as described in [deploy-from-ansible.md](deploy-from-ansible.md).
|
||||
|
|
Loading…
Add table
Reference in a new issue