mirror of
https://github.com/sherlock-project/sherlock
synced 2024-11-15 16:47:57 +00:00
f7f36b5137
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!
11 lines
244 B
Bash
11 lines
244 B
Bash
#!/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
|
|
|
|
|