我正在尝试安装一些插件到Plone,但是构建无法找到依赖项的链接。
我的buildout.cnfg中有以下内容
find-links +=
http://dist.plone.org/release/5.0.4
http://getpaid.googlecode.com/files/yoma.batching-0.2.2-getpaid.zip和
index = https://pypi.python.org/simple/
eggs =
Plone
Pillow
collective.addthis
collective.cart.shopping
Products.PloneGetPaid当我跑的时候
bin/buildout我得到了
Getting distribution for 'plone.recipe.zope2instance==4.4.0'.
warning: no previously-included files matching '*pyc' found anywhere in distribution
Got plone.recipe.zope2instance 4.4.0.
Installing instance.
Couldn't find index page for 'getpaid.yoma.batching' (maybe misspelled?)
Getting distribution for 'getpaid.yoma.batching'.
Couldn't find index page for 'getpaid.yoma.batching' (maybe misspelled?)
While:
Installing instance.
Getting distribution for 'getpaid.yoma.batching'.
Error: Couldn't find a distribution for 'getpaid.yoma.batching'.我遵循安装指南,我唯一的不同之处是将index = https://pypi.python.org/simple/添加到buildout.cnfg中,添加没有做任何事情的plone.recipe.zope2instance = 4.4.0,添加链接来查找没有做任何事情的链接。
Plone
Pillow
collective.addthis
collective.cart.shopping第一个3安装,但在我添加index = https://pypi.python.org/simple/之前,只有Plone和Pillow才会安装。最初的错误是这里
发布于 2018-07-09 07:19:44
getpaid.yoma.batching不是托管在pypi.org上。
尝试搜索它,你将找不到任何结果:https://pypi.org/search/?q=getpaid.yoma.batching
您可以使用mr.developer将其作为开发蛋添加到构建中:
getpaid.yoma.batching = git https://github.com/collective/getpaid.yoma.batching.git或者,您可以在定制的茄子服务器或apache/nginx上使用目录清单(使用find-link)对鸡蛋进行私有发布。
https://stackoverflow.com/questions/51221840
复制相似问题