diff --git a/setup.sh b/setup.sh new file mode 100755 index 0000000..c4c1c73 --- /dev/null +++ b/setup.sh @@ -0,0 +1,11 @@ +#!/usr/bin/env bash +if [[ $EUID -ne 0 ]]; then + echo "You must be root" 2>&1 + exit 1 +fi + +apt-get install python-pip msgpack-python python-nfqueue python-imaging -y +apt-get install python-requests python-configobj python-pefile -y +git submodule init +git submodule update +cd bdfactory/ && ./install.sh