我尝试使用Python 2.6.6在CentOS虚拟机上安装Plone 4.0,但是在运行buildout.cfg时遇到错误。任何人都可以建议吗?

时间:2016-06-09 16:39:14

标签: plone plone-4.x

$ python buildout.cfg -vvv

 File "buildout.cfg", line 2

  parts =
        ^

SyntaxError: invalid syntax

以下是发生错误的代码。

[buildout]

parts =
    productdistros
    instance
    zopepy

任何人都知道如何修复.cfg以便它在没有错误的情况下运行?

1 个答案:

答案 0 :(得分:4)

那不是你如何运行buildout。你正常运行

python bootstrap.py
bin/buildout -c buildout.cfg

如果没有-c buildout.cfg,则buildout.cfg是默认配置文件,如果没有给出。

但是,您最好使用统一安装程序进行设置。

请参阅:http://docs.plone.org/manage/installing/installation.html