Alb-310 / Geogramint

An OSINT Geolocalization tool for Telegram that find nearby users and groups 📡🌍🔍
GNU General Public License v3.0
659 stars 82 forks source link

ModuleNotFoundError: No module named 'kivy' #3

Closed andre-santos1 closed 2 years ago

andre-santos1 commented 2 years ago

I´m running Geogramint in Ubuntu 22.04 LTS with Python 3.10.4 and I´m getting the following error:

_osint@osint:~/Programas/Geogramint$ python3 geogramint.py

Traceback (most recent call last):

File "/home/osint/Programas/Geogramint/geogramint.py", line 7, in

from api import TelegramAPIRequests

File "/home/osint/Programas/Geogramint/api/TelegramAPIRequests.py", line 4, in

from kivy import Logger

ModuleNotFoundError: No module named 'kivy'_

Alb-310 commented 2 years ago

Hello @andre-santos1,

As written in the README and the Wiki, it's recommended to use python 3.8 or 3.9 with Geogramint. Kivy, the library responsible of the user interface have some problems in python 3.10. Also make sure you installed all dependencies before running geogramint.py

andre-santos1 commented 2 years ago

Thanks!