ThoughtfulDev / EagleEye

Stalk your Friends. Find their Instagram, FB and Twitter Profiles using Image Recognition and Reverse Image Search.
Do What The F*ck You Want To Public License
4.19k stars 558 forks source link

ModuleNotFoundError: No module named 'grabber.facebook' #57

Closed blinhares closed 5 years ago

blinhares commented 5 years ago

i got this error...

root@kali:~/EagleEye# python3 eagle-eye.py Traceback (most recent call last): File "eagle-eye.py", line 10, in from grabber.facebook import FBGrabber, FBProfileGrabber ModuleNotFoundError: No module named 'grabber.facebook'

ThoughtfulDev commented 5 years ago

Have you cloned the entire repo? Does the file grabber/Facebook.py exist?

blinhares commented 5 years ago

Yes for both questions! I have use this comand to get install:

wget https://raw.githubusercontent.com/ThoughtfulDev/EagleEye/master/install.sh && chmod +x install.sh && ./install.sh

And I did manually and returned the same error.

ThoughtfulDev commented 5 years ago

Thats weird. Can you go into a python 3.6 (or higher) interactive shell from the directory of EagleEye and import grabber.facebook manually? e.g from grabber.facebook import FBGrabber

blinhares commented 5 years ago

Sure! I got the same error :( Traceback (most recent call last): File "", line 1, in ModuleNotFoundError: No module named 'grabber.facebook'

Inside de grabber folder i try to import facebook.py with: import facebook. I got this error: Traceback (most recent call last): File "", line 1, in File "/root/EagleEye/grabber/facebook.py", line 6, in import utils.config as cfg ModuleNotFoundError: No module named 'utils'

I pip install utils, them import but when i try import facebook from grabber i got the same error

ThoughtfulDev commented 5 years ago

Utils.config is included. No need to pip it. Honestly no idea. Seems like you run as root? Try running as a normal user in their home folder

blinhares commented 5 years ago

I install on ubuntu and the error is gone... but when a execute the progrma i got this: image

Alefunshow commented 5 years ago

I have the same error

ThoughtfulDev commented 5 years ago

Use the latest geckodriver release: https://github.com/mozilla/geckodriver/releases/tag/v0.24.0 I used that geckodriver + Firefox 66.0 and it worked flawlessly.