ctf-tools/foresight/install
2015-10-24 20:54:06 -07:00

13 lines
241 B
Bash
Executable file

#!/bin/bash -e
git clone https://github.com/ALSchwalm/foresight.git
# python3 virtualenv
virtualenv -p $(which python3) python3
source python3/bin/activate
pip install -e foresight
mkdir -p bin
cd bin
ln -s ../python3/bin/foresee .
cd ..