thewhiteh4t / seeker

Accurately Locate Smartphones using Social Engineering
MIT License
6.94k stars 1.67k forks source link

Help! Please! #369

Closed Dari0GR closed 2 years ago

Dari0GR commented 2 years ago

this is my problem....

python3 seeker.py

Traceback (most recent call last): File "seeker.py", line 13, in import requests ModuleNotFoundError: No module named 'requests'

Could you help me please... This in macOS Monterrey 12.3.1

thewhiteh4t commented 2 years ago

@Dari0GR what happens when you run install.sh ?

Dari0GR commented 2 years ago

@Dari0GR what happens when you run install.sh ?

./install.sh ./install.sh: line 8: syntax error near unexpected token >' ./install.sh: line 8: sudo apt -y install python3 python3-pip &>> $ILOG && echo 'Python3 - Installed' || 'Python3 - Failed!''

from the folder directly with double click the same thing happens...

thewhiteh4t commented 2 years ago

@Dari0GR thank you, actually I don't have an apple device or vm to test the install script on it, I will figure out something soon

Dari0GR commented 2 years ago

@Dari0GR thank you, actually I don't have an apple device or vm to test the install script on it, I will figure out something soon

Dude I solved it! I'll tell you how I did it in case someone later has the same problem:

First it showed me the error:

python3 seeker.py Traceback (most recent call last): File "seeker.py", line 13, in import requests ModuleNotFoundError: No module named 'requests'

and I solved it with the following line (I did this inside the seeker folder, I don't know if it's right but it worked):

python3 -m pip install requests

Then it showed me the following error:

python3 seeker.py Traceback (most recent call last): File "/Users/dariogr/Desktop/seeker/seeker.py", line 17, in from packaging import version ModuleNotFoundError: No module named 'packaging'

I solved it with the following line:

python3 -m pip install packaging

And ready! With this I solved my problem and now let me run python3 seeker.py

nxb1t commented 2 years ago

@Dari0GR what happens when you run install.sh ?

Maybe create requirements.txt and add python3 -m pip install -r requirements.txt in README :)

thewhiteh4t commented 2 years ago

@nxb1t install script is for that but it was not tested on mac

thewhiteh4t commented 2 years ago

@Dari0GR please share output of the following command :

echo $OSTYPE
thewhiteh4t commented 2 years ago

closing due to inactivity.