Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Pip install-couldn't find a version that satisfies the requirement

I am trying to install a package called got using pip. But it keeps showing up errors of 'couldn't find a version that satisfies the requirement".

error

I've searched online about the solutions. There are some explanation saying to try pip freeze > requirements.txt. But it still remains a blackbox to me.

What is the problem here and what should I do exactly to install the package?

Thanks!

like image 502
Miya Wang Avatar asked Aug 11 '16 18:08

Miya Wang


1 Answers

This package doesn't include a setup.py, so you can't install it from pip.

If it did, you could install it with: pip install git+https://github.com/Jefferson-Henrique/GetOldTweets-python.git

like image 157
David Cox Avatar answered Sep 22 '22 08:09

David Cox