ctf-tools/foresight/install

14 lines
251 B
Text
Raw Normal View History

#!/bin/bash -e
git clone --depth 1 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 ..