安装Plone.Buildout现在包括'buildout-versions'(以及旧版'buildout.dumppickedversions'的一部分)

hap*_*dev 4 python 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.
Run Code Online (Sandbox Code Playgroud)

怎么解决?

acl*_*ark 8

如果您使用的是Buildout 2.x或更高版本,请buildout.dumppickedversions从扩展程序中删除,例如:

[buildout]
extensions =
# We don't need this in 2.x:
# buildout.dumppickedversions
Run Code Online (Sandbox Code Playgroud)

或者使用Buildout 1.7.x:

$ curl -O https://raw.github.com/buildout/buildout/1/bootstrap/bootstrap.py
$ bin/python bootstrap.py
Run Code Online (Sandbox Code Playgroud)