【发布时间】:2018-12-15 01:39:43
【问题描述】:
我正在尝试通过 buildout 将附加组件添加到 Plone,但它找不到包。我已经在 virtualenv 和系统范围的 python 中尝试过它
我按照 Plone 网站上的设置进行操作 Setup instructions
我尝试的每个插件都会出现以下错误
Installing instance.
/home/a/Plone/zinstance/local/lib/python2.7/site-packages/pkg_resources/__init__.py:192: RuntimeWarning: You have iterated over the result of pkg_resources.parse_version. This is a legacy behavior which is inconsistent with the new version class introduced in setuptools 8.0. In most cases, conversion to a tuple is unnecessary. For comparison of versions, sort the Version instances directly. If you have another use case requiring the tuple, please file a bug with the setuptools project describing that need.
stacklevel=1,
Couldn't find index page for 'collective.addthis' (maybe misspelled?)
Getting distribution for 'collective.addthis'.
Couldn't find index page for 'collective.addthis' (maybe misspelled?)
While:
Installing instance.
Getting distribution for 'collective.addthis'.
Error: Couldn't find a distribution for 'collective.addthis'.
我将包添加到 buildout.cnfg
eggs =
Plone
Pillow
collective.addthis
Plone 和 Pillow 构建良好,但我尝试的每个附加组件都会出现相同的错误。
【问题讨论】:
标签: python pip plone buildout egg