Last active
May 29, 2025 11:16
-
-
Save CloudLinuxDeveloper/4f035e7185d0201c20244fa3ee68dac3 to your computer and use it in GitHub Desktop.
How to install theHarvester on Ubuntu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# !/bin/sh | |
# Download and clone the theHarvester from Github | |
git clone https://github.com/laramies/theHarvester | |
# Now enter into the theHarvester Folder | |
cd theHarvester | |
# Install pip | |
sudo apt install python3-pip | |
# Run the command if not donot work then run second one | |
python3.7 -m pip install -r requirements/dev.txt | |
# Else: | |
python3.7 -m pip install -r requirements/base.txt | |
#Run theHarvester | |
python3.7 theHarvester.py -h | |
#Generating email list use this command | |
python3.7 theHarvester.py -d gmail.com -l 500 -b google |
i don't know how but this code isn't running in my machine its showing that its install properly but still not able to use theharvester
Deku, it may be a problem with python version. In my case python was already in ver 3.10 so instead of "python3.7 -m pip install -r requirements/dev.txt" try this command with your version of python
doesnt work for me
is not working to for me. i have python 3.11 still not working
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
i don't know how but this code isn't running in my machine
its showing that its install properly but still not able to use theharvester