jkakavas / creepy

A geolocation OSINT tool. Offers geolocation information gathering through social networking platforms.
http://www.geocreepy.com
GNU General Public License v3.0
412 stars 108 forks source link

Issues getting Creepy to work under Ubuntu 14.04.2 #4

Closed OpenFerret closed 9 years ago

OpenFerret commented 9 years ago

When I try to exeute:
user@ubuntu:~/Downloads/creepy-master/creepy$ sudo python CreepyMain.py

I get:
Traceback (most recent call last): File "CreepyMain.py", line 11, in import pytz ImportError: No module named pytz

Is there a .deb package coming any time? Many thanks for you time!

OpenFerret commented 9 years ago

Sorry, bit of google and I found I was missing the python-tz package... But now If hit my next error: user@ubuntu:~/Downloads/creepy-master/creepy$ python CreepyMain.py Traceback (most recent call last): File "CreepyMain.py", line 18, in from dominate import document ImportError: No module named dominate

jkakavas commented 9 years ago

You would be better off installing the necessary python modules from pip, instead of the system packages. First get pip and the pyqt4 bindings from ubuntu repositories $ sudo apt-get install python-pip python-qt4

Then you can get all the necessary packages with $ sudo pip install dominate pytz yapsy tweepy flickrapi python-instagram google-api-python-client configobj python-dateutil

OpenFerret commented 9 years ago

Excellent, thank you. Up and running now.