batuhaniskr / twitter-intelligence

Twitter Intelligence OSINT project performs tracking and analysis of the Twitter
MIT License
228 stars 67 forks source link

Requirements Error? #6

Closed peterstavrou closed 5 years ago

peterstavrou commented 5 years ago

The below error appears when trying to install requirements.

Could not find a version that satisfies the requirement PyQt4==4.11.4 (from -r requirements.txt (line 10)) (from versions: )
No matching distribution found for PyQt4==4.11.4 (from -r requirements.txt (line 10))
hackison commented 5 years ago

same error for me also

batuhaniskr commented 5 years ago

I fixed PyQt4 version error. Upgraded PyQt4 to PyQt5.

Repeat install requirements.txt with pip3 install -r requirements.txtcommand.

peterstavrou commented 5 years ago

It seems the error has slightly changed.

Could not find a version that satisfies the requirement PyQt5==5.11.2 (from -r requirements.txt (line 10)) (from versions: ) No matching distribution found for PyQt5==5.11.2 (from -r requirements.txt (line 10))

gusleig commented 5 years ago

I managed this error installing with apt-get all these packages

sudo apt-get install python3-pyqt5 sudo apt-get install pyqt5-dev-tools sudo apt-get install qttools5-dev-tools

batuhaniskr commented 5 years ago

@PeterStavrou PyQt requires to have the SIP module installed. If you are still getting an error, you can review https://www.metachris.com/2016/03/how-to-install-qt56-pyqt5-virtualenv-python3/