我正在尝试根据本手册构建collective.simserver:
http://plone.org/products/collective.simserver
经过一些修改:
instead of: virtualenv --python=bin/python2.7 simserver/
I am using: virtualenv --python=myVirtualEnv/bin/python simserver
(因为如果我按照例子它将无效)
我设法达到了这一点:
myVirtualEnv/bin/python bootstrap.py
然后它与这个错误信息分开:
Mint-AMD64 nenad # myVirtualEnv/bin/python bootstrap.py
While:
Initializing.
An internal error occurred due to a bug in either zc.buildout or in a
recipe being used:
Traceback (most recent call last):
File "/tmp/tmpLiHZgo/zc.buildout-1.6.3-py2.6.egg/zc/buildout/buildout.py", line 1851, in main
command)
File "/tmp/tmpLiHZgo/zc.buildout-1.6.3-py2.6.egg/zc/buildout/buildout.py", line 203, in __init__
data['buildout'].copy(), override, set()))
File "/tmp/tmpLiHZgo/zc.buildout-1.6.3-py2.6.egg/zc/buildout/buildout.py", line 1465, in _open
parser.readfp(fp)
File "/usr/lib/python2.6/ConfigParser.py", line 305, in readfp
self._read(fp, filename)
File "/usr/lib/python2.6/ConfigParser.py", line 482, in _read
raise MissingSectionHeaderError(fpname, lineno, line)
MissingSectionHeaderError: File contains no section headers.
file: /home/nenad/buildout.cfg, line: 4
'<!DOCTYPE html>\n'
Mint-AMD64 nenad #
可能出现什么问题?
此致 雷纳德
答案 0 :(得分:7)
答案 1 :(得分:7)
我想我迟到了回答,但当我将Config文件保存为UTF-8
时,它就发生了
尝试将文件保存为ANSI
。
答案 2 :(得分:1)
对我来说,我看到这个错误是因为我错误地认为 .read_file()
的 API 接受文件路径,但它只接受文件句柄。
答案 3 :(得分:0)
此错误很可能是因为配置文件中的各节缺少标题(或未正确指定)。请参阅configparser文档,以了解配置文件必须具有的格式。
配置文件由节组成,这些节必须以[header]
开头,例如:
[DEFAULT]
ServerAliveInterval = 45
Compression = yes
CompressionLevel = 9
ForwardX11 = yes
[bitbucket.org]
User = hg
[topsecret.server.com]
Port = 50022
ForwardX11 = no
配置文件中的每个部分都将包含由字符串(默认为=
或:
)分隔的键/值对。每个部分的 header 必须采用[header]
格式,任何不同的内容都将产生configparser.MissingSectionHeaderError
。