pypi包发布但无法下载

时间:2017-05-24 01:23:37

标签: python package pypi

我这里有一个由命令行发布的pypi包,但是没有人可以下载它(除了在我打包的笔记本电脑上):

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


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

enter image description here

这是https://pypi.python.org/pypi?%3Aaction=pkg_edit&name=webdriver_chauffeur

很确定我遵循了这个https://axiacore.com/blog/basic-steps-publish-python-package/

为什么这个包不能安装?谢谢

2 个答案:

答案 0 :(得分:1)

我在pypi上维护了一个包,然后就遇到了这个问题。我通过点击"更新版本来解决这个问题"在我的包的pypi版本页面上。如果此问题仍然存在,您可以考虑让软件包维护者了解解决方法。

答案 1 :(得分:0)

很多人都有同样的问题,似乎pypi不稳定你应该运行自己的pip服务器来使用你的包

相关问题