NameError:使用pip安装软件包时未定义名称“install”

时间:2014-04-02 07:56:18

标签: python python-2.7 pip virtualenv virtualenvwrapper

我正在尝试使用pip创建virtualenv并安装项目依赖项。

$ mkvirtualenv --no-site-packages --distribute myenv
(myenv)$ pip install -r requirements.txt

我还在export VIRTUALENV_DISTRIBUTE=true

中设置了~/.bash_profile

安装一些软件包后,pip显示以下错误:

.....

Could not find the /Users/me/.virtualenvs/myenv/lib/python2.7/site-packages/site.py element of the Setuptools distribution

Patched done.

Relaunching...

Traceback (most recent call last):

  File "<string>", line 1, in <module>

NameError: name 'install' is not defined

----------------------------------------
Cleaning up...
Command /Users/me/.virtualenvs/myenv/bin/python -c "import setuptools;__file__='/Users/me/.virtualenvs/myenv/build/distribute/setup.py';exec(compile(open(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --record /var/folders/r0/2b441j6x5rq8y964bhd15gkm0000gn/T/pip-wyn1Ys-record/install-record.txt --single-version-externally-managed --install-headers /Users/me/.virtualenvs/myenv/include/site/python2.7 failed with error code 1 in /Users/me/.virtualenvs/myenv/build/distribute

如果没有--distribute切换且没有export VIRTUALENV_DISTRIBUTE=true

,则完全相同

这是我的requirements.txt文件:

Django==1.5
Pillow==1.7.6
South==0.7.3
amqplib==1.0.2
anyjson==0.3.1
celery==2.5.3
distribute==0.6.10
django-celery==2.4.2
django-indexer==0.3.0
django-kombu==0.9.4
django-mptt==0.5.2
django-paging==0.2.4
django-picklefield==0.2.1
django-social-auth==0.7.22
django-tagging==0.3.1
django-taggit==0.9.3
django-templated-email==0.4.7
django-templatetag-sugar==0.1
eventlet==0.9.16
greatape==0.3.0
greenlet==0.3.4
html5lib==0.90
httplib2==0.8
kombu==2.1.7
lockfile==0.9.1
oauth2==1.5.211
pycrypto==2.3
python-daemon==1.6
python-dateutil==1.5
python-openid==2.2.5
raven==1.0.4
sentry==2.0.0-RC6
simplejson==2.3.2
ssh==1.7.8
wsgiref==0.1.2

我正在使用Mac OS X 10.9.2。 我不想在requirements.txt中更改任何内容我只想安装所有依赖项并运行此项目。

1 个答案:

答案 0 :(得分:3)

从列表中删除distribute包,重新创建环境并重新安装要求。

您也可以删除wsgiref(虽然不是很重要)。