-1
ho-fe3fdd00-12:~ Sam$ easy_install BeautifulSoup
Traceback (most recent call last):
  File "/usr/bin/easy_install", line 8, in <module>
    load_entry_point('setuptools==0.6c7', 'console_scripts', 'easy_install')()
  File "/System/Library/Frameworks/Python.framework/Versions/2.5/Extras/lib/python/setuptools/command/easy_install.py", line 1670, in main
    with_ei_usage(lambda:
  File "/System/Library/Frameworks/Python.framework/Versions/2.5/Extras/lib/python/setuptools/command/easy_install.py", line 1659, in with_ei_usage
    return f()
  File "/System/Library/Frameworks/Python.framework/Versions/2.5/Extras/lib/python/setuptools/command/easy_install.py", line 1674, in <lambda>
    distclass=DistributionWithoutHelpCommands, **kw
  File "/System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/distutils/core.py", line 125, in setup
    dist.parse_config_files()
  File "/System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/distutils/dist.py", line 373, in parse_config_files
    parser.read(filename)
  File "/System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/ConfigParser.py", line 267, in read
    self._read(fp, filename)
  File "/System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/ConfigParser.py", line 462, in _read
    raise MissingSectionHeaderError(fpname, lineno, line)
ConfigParser.MissingSectionHeaderError: File contains no section headers.
file: /Users/Sam/.pydistutils.cfg, line: 1
'install_lib = ~/Library/Python/$py_version_short/site-packages\n'

我正在尝试安装beautifulsoup。~/.pydistutils.cfg 中的前两行:

install_lib = ~/Library/Python/$py_version_short/site-packages
install_scripts = ~/bin
4

3 回答 3

3

BeautifulSoup 是一个纯 Python 模块,您可以通过获取 BeautifulSoup.py 文件(例如,从标准 .tar.gz 发行版内部)并将其放在 PythonPath 上的某个位置来安装它 - 例如。在 /Users/Sam/Library/Python/2.5/site-packages 中,如果错误消息中提到的路径是准确的。

无需繁琐且容易出错的安装程序,这会使问题过于复杂。

于 2009-01-17T01:17:03.497 回答
2

配置文件 .pydstutils.cfg 有语法错误。

于 2009-01-17T00:26:07.483 回答
2

尝试在顶部添加该行~/.pydistutils.cfg

[easy_install]
于 2009-01-17T01:10:25.833 回答