小编典典

Pip安装-无法找到满足要求的版本

python

我试图安装一个叫做包得到了使用PIP。但是它不断显示“找不到满足要求的版本”的错误。

错误

我已经在网上搜索了有关解决方案的信息。有一些解释说尝试点冻结> requirements.txt。但这对我来说仍然是一个黑匣子。

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

谢谢!


阅读 217

收藏
2021-01-20

共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

2021-01-20