26

我正在尝试根据本手册构建collective.simserver ,并进行一些修改:

instead of: virtualenv --python=bin/python2.7 simserver/
I am using: virtualenv --python=myVirtualEnv/bin/python simserver

我设法做到了这一点:

myVirtualEnv/bin/python bootstrap.py

然后它与此错误信息分开:

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 # 

可能有什么问题?

4

4 回答 4

19

我想我迟到了,但是当我将配置文件保存为UTF-8 尝试将文件保存为ANSI.

于 2015-10-26T16:19:56.420 回答
12

对我来说,我看到了这个错误,因为我错误地认为 API.read_file()接受文件路径,但它只接受文件句柄。

于 2021-04-06T05:48:07.723 回答
11

配置文件中没有节头。

配置文件由部分组成,由 [section] 标头引导,后跟名称:值条目。

文档 CofigParser python 模块

于 2013-04-19T09:01:53.097 回答
1

此错误很可能是因为配置文件中的部分缺少标题(或指定错误)。请参阅configparser文档以查看配置文件必须具有的格式。

配置文件由section 组成,必须以 a开头[header],例如:

[DEFAULT]
ServerAliveInterval = 45
Compression = yes
CompressionLevel = 9
ForwardX11 = yes

[bitbucket.org]
User = hg

[topsecret.server.com]
Port = 50022
ForwardX11 = no

= 并且配置文件中的每个部分都将包含由字符串(或:默认情况下)分隔的键/值对。每个部分的标题必须采用格式[header],任何不同都会产生configparser.MissingSectionHeaderError.

于 2020-11-11T08:40:48.640 回答