我在安装过程中发出此警告:
$ 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)
怎么解决?
如果您使用的是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)