ctf-tools/foresight/install

14 lines
241 B
Text
Raw Normal View History

#!/bin/bash -e
2015-10-25 03:54:06 +00:00
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 ..