0

我正在尝试使用zc.buildout和引导它。但在引导期间我收到错误:

cleg$ /usr/local/bin/python bootstrap.py
Downloading http://pypi.python.org/packages/source/d/distribute/distribute-0.6.49.tar.gz
Extracting in /var/folders/ky/t76hxgx529s642rfd8vywd280000gn/T/tmpAXsdCh
Now working in /var/folders/ky/t76hxgx529s642rfd8vywd280000gn/T/tmpAXsdCh/distribute-0.6.49
Building a Distribute egg in /var/folders/ky/t76hxgx529s642rfd8vywd280000gn/T/tmpQuAu95
/var/folders/ky/t76hxgx529s642rfd8vywd280000gn/T/tmpQuAu95/distribute-0.6.49-py2.7.egg
Traceback (most recent call last):
  File "bootstrap.py", line 253, in <module>
    ws.require(requirement)
  File "build/bdist.macosx-10.7-x86_64/egg/pkg_resources.py", line 698, in require
  File "build/bdist.macosx-10.7-x86_64/egg/pkg_resources.py", line 596, in resolve
pkg_resources.DistributionNotFound: setuptools>=0.7

我试图将项目与系统隔离,并使用 Virtualenv 创建“干净”的 python,但得到了同样的错误。

我尝试使用 pip 更新 setuptools,并且在site-packages我有的文件夹中setuptools-0.9.5-py2.7.egg,但看起来 bootstrap 没有看到它。

我正在使用用自制软件构建的 python 2.7.5。如何解决此问题?

4

1 回答 1

3

You should use the bootstrap file from this URL : http://downloads.buildout.org/2/bootstrap.py

Maybe you also have to follow the instructions from this question: How to solve pkg_resources.VersionConflict error during bin/python bootstrap.py -d

于 2013-07-24T00:10:20.520 回答