Datalux / Osintgram

Osintgram is a OSINT tool on Instagram. It offers an interactive shell to perform analysis on Instagram account of any users by its nickname
GNU General Public License v3.0
9.76k stars 2.16k forks source link

main.py isnt working #471

Open kelpyjee opened 2 years ago

kelpyjee commented 2 years ago

image

image explains it all, whenever i enter python3 main.py , this shows up:

Traceback (most recent call last): File "main.py", line 3, in from src.Osintgram import Osintgram File "/home/ham/Osintgram/src/Osintgram.py", line 9, in import requests

Shineori commented 2 years ago

I had the same exact issue, no fix on my end yet.

should've waited a few minutes before posting this as I just figured it out not even 10minutes later lol.

for me, I went back to the main file (~/Osintgram$) and just did sudo apt update followed by sudo apt upgrade and it started working after that.

Exodo0 commented 2 years ago

I solved it with this:

This Library fixes the problems of not being able to install the modules of:

pyreadline and gnureadline.

install First:

sudo apt-get install libncurses5-dev

When you finish installing this library, you only need to install this:

pip install pyreadline

and

pip install gnureadline

I hope it helps you

cathaypacific8747 commented 2 years ago

My solution: Open main.py, and replace all instances of gnureadline with readline.

Hope this helps :)