pypi包已发布但无法下载
pypi package published but can't download
我在 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
在这里https://pypi.python.org/pypi?%3Aaction=pkg_edit&name=webdriver_chauffeur
很确定我关注了这个https://axiacore.com/blog/basic-steps-publish-python-package/
为什么这个包无法安装?
很多人遇到同样的问题,pypi 似乎不稳定,你应该运行你自己的 pip 服务器来使用你的包
我在 pypi 上维护一个包,刚遇到这个问题。我通过在我的包的 pypi 版本页面上点击 "update release" 来解决它。如果此问题仍然存在,您可以考虑让包维护者了解解决方法。
我知道这是一个旧话题,但我 运行 遇到了类似的问题并且这个话题在 Google 上弹出。
我遇到了同样的错误信息。问题是,我设置了一个 >=3.9 的 Python 版本约束。因为那是我开发的版本。但是,我尝试 运行 pip install <...>
的环境使用的是 Python 3.7。通过放宽 setup.py
中的约束(或在我的情况下为 pyproject.toml
),问题得到解决。
我在 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
在这里https://pypi.python.org/pypi?%3Aaction=pkg_edit&name=webdriver_chauffeur
很确定我关注了这个https://axiacore.com/blog/basic-steps-publish-python-package/
为什么这个包无法安装?
很多人遇到同样的问题,pypi 似乎不稳定,你应该运行你自己的 pip 服务器来使用你的包
我在 pypi 上维护一个包,刚遇到这个问题。我通过在我的包的 pypi 版本页面上点击 "update release" 来解决它。如果此问题仍然存在,您可以考虑让包维护者了解解决方法。
我知道这是一个旧话题,但我 运行 遇到了类似的问题并且这个话题在 Google 上弹出。
我遇到了同样的错误信息。问题是,我设置了一个 >=3.9 的 Python 版本约束。因为那是我开发的版本。但是,我尝试 运行 pip install <...>
的环境使用的是 Python 3.7。通过放宽 setup.py
中的约束(或在我的情况下为 pyproject.toml
),问题得到解决。