我正在尝试为plone安装getpaid,但我的buidout返回了:
Error: Couldn't find a distribution for 'yoma.batching==0.2.2-getpaid'.我的构建包括:
find-links =
http://getpaid.googlecode.com/files/yoma.batching-0.2.2-getpaid.zip...and链接起作用了。
如何解决这类问题?
发布于 2017-11-29 22:54:05
将此行添加到buildout中。
index = https://pypi.python.org/simple索引
An alternate index location.
This can be a local directory name or an URL. It can be a flat collection of distributions, but should be a “simple” index, with subdirectories for distribution project names containing distributions for those projects.
If this isn’t set, then https://pypi.python.org/simple/ is used.来自buildout的文档。
发布于 2013-02-04 22:57:54
您的buildout定义了两次find-links。第二个查找链接覆盖了第一个(具有到yoma.batching的正确链接)。
您可以将两个查找链接合并为一个:
find-links =
http://getpaid.googlecode.com/files/hurry.workflow-0.9.2-getpaid.zip
http://getpaid.googlecode.com/files/ore.viewlet-0.2.3-getpaid.zip
http://getpaid.googlecode.com/files/yoma.batching-0.2.2-getpaid.zip
http://dist.plone.org
http://download.zope.org/ppix/
http://download.zope.org/distribution/
http://effbot.org/downloads
http://dist.plone.org/thirdparty/PILwoTk-1.1.6.4.tar.gz答案就在评论上。
发布于 2021-04-20 18:18:35
PyPI的CDN Fastly has recently been running rolling brownouts for HTTP clients that don't support SNI,服务器名称指示(一种安全技术)。这适用于旧的Python2版本(2.7.13就可以了)和old setuptools versions (37.0.0 should work)。所以要确保这些都是升级的。在我们的例子中,我们发现了一个运行setuptools 33的CI服务器。
你可以在status.python.org上关注更新。2021年5月3日,将删除对旧客户端的支持。
https://stackoverflow.com/questions/8569117
复制相似问题