sherlock #1254
-
how can I install sherlock in phyton |
Beta Was this translation helpful? Give feedback.
Replies: 5 comments
This comment was marked as spam.
This comment was marked as spam.
This comment was marked as spam.
This comment was marked as spam.
This comment was marked as spam.
This comment was marked as spam.
This comment was marked as off-topic.
This comment was marked as off-topic.
-
Installation steps are shown on the README: You just need to install Git and Python first if you don't have them already. sudo apt-get install git python3 python3-pip Other distros will have a similar command, but the package names may differ. If you're on Windows you can just download it from following websites: You can confirm the following commands work without error: git --version # If you're on Linux
python3 --version
# If you're on Windows
python --version You should be able to follow the instructions as-is. Later I'll make a PR proposing this information be added. |
Beta Was this translation helpful? Give feedback.
Installation steps are shown on the README:
https://github.com/sherlock-project/sherlock#installation=
You just need to install Git and Python first if you don't have them already.
If you're on Debian based distro, you can just do:
Other distros will have a similar command, but the package names may differ.
If you're on Windows you can just download it from following websites:
You can confirm the following commands work without error:
You should be able to follow the instructions as…