From f7f36b51376d84f2f7bbb9568caeac06412d12ac Mon Sep 17 00:00:00 2001 From: theodosisathanasakis <32517114+theodosisathanasakis@users.noreply.github.com> Date: Thu, 3 Jan 2019 13:39:33 +0200 Subject: [PATCH] Install packages for linux The script downloads the packages that are necessary for the sherlock.py. It is an automated procedure instead of the instructions in the README.md. It contains some packages that are not in README but I couldn't run "pip3 install -r requirements.txt" without them. It is for linux, I don't know if it works on something else. I believe it is useful! --- install_packages.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 install_packages.sh diff --git a/install_packages.sh b/install_packages.sh new file mode 100644 index 000000000..cd6eb25da --- /dev/null +++ b/install_packages.sh @@ -0,0 +1,11 @@ +#!/bin/bash + +# install python3 if not exist +sudo apt-get install python3 + +# install the all the necessery packages and requirements +sudo apt-get install python3-pip +sudo pip3 install --upgrade setuptools +sudo pip3 install -r requirements.txt + +