我在安装plone的过程中收到了这样的警告:
$ bin/buildout
While:
Installing.
Loading extensions.
Error: Buildout now includes 'buildout-versions' (and part of the older 'buildout.dumppickedversions').
Remove the extension from your configuration and look at the 'show-picked-versions' option in buildout's documentation.如何修复它?
发布于 2013-06-26 20:33:07
如果您使用的是Buildout 2.x或更高版本,请从扩展中删除buildout.dumppickedversions,例如:
[buildout]
extensions =
# We don't need this in 2.x:
# buildout.dumppickedversions或者使用Buildout 1.7.x:
$ curl -O https://raw.github.com/buildout/buildout/1/bootstrap/bootstrap.py
$ bin/python bootstrap.pyhttps://stackoverflow.com/questions/17315259
复制相似问题