Pip install-找不到满足要求的版本

时间:2016-08-11 18:12:43

标签: python package install pip

我正在尝试使用pip安装名为got的软件包。但它不断出现“无法找到满足要求的版本”的错误。

error

我在网上搜索了解决方案。尝试pip冻结有一些解释> requirements.txt。但它仍然是我的黑盒子。

这里有什么问题,我应该怎么做才能安装软件包?

谢谢!

3 个答案:

答案 0 :(得分:3)

此软件包不包含setup.py,因此您无法从pip安装它。

如果有,你可以安装它: pip install git+https://github.com/Jefferson-Henrique/GetOldTweets-python.git

答案 1 :(得分:1)

你的包裹got确实不在Pypi上。

找不到包裹时会引发错误。

例如:

→ pip install notfoundpackage
Collecting notfoundpackage
  Could not find a version that satisfies the requirement notfoundpackage (from versions: )
No matching distribution found for notfoundpackage

但是,因为您知道github链接,所以可以使用git克隆存储库。

git clone git@github.com:Jefferson-Henrique/GetOldTweets-python.git
cd GetOldTweets-python
python Exporter.py -h

如果你真的需要一个用于推特的python库,那么其他一些库已经存在,比如twython

答案 2 :(得分:1)

这可能是代理设置问题(在我的情况下)。如果您位于防火墙后面,请确保设置了正确的代理。