我正在尝试在装有 Python 2.6.6 的 CentOS 虚拟机上安装 Plone 4.0,但在运行 buildout.cfg 时出现错误。谁能建议?


$ python buildout.cfg -vvv
 File "buildout.cfg", line 2
  parts =
        ^
SyntaxError: invalid syntax

以下是发生错误的代码。

[buildout]
parts =
    productdistros
    instance
    zopepy

有人知道如何修复.cfg使其运行而没有错误吗?

这不是你运行构建的方式。 你正常运行

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

其中不需要-c buildout.cfg作为构建.cfg如果没有给出,则为默认配置文件。

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

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

相关内容

  • 没有找到相关文章

最新更新