我最近更新到 Python 2.7,以便开始使用 Django “Django 需要 Python,特别是 Python 2.6.5 - 2.7.x。”
因此,我需要安装一些我在完成出色的LPTHW 练习 46时一直在使用的工具
应该很容易,我以前都做过...
当我在终端中运行 python 时,我得到以下信息。注意:Python 2.7.5
$ python
Python 2.7.5 (v2.7.5:ab05e7dd2788, May 13 2013, 13:18:45)
[GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>>
当我输入“which python”时,我得到
$ which python
/Library/Frameworks/Python.framework/Versions/2.7/bin/python
但是,当我尝试安装distribute、nose 或virtualenv 时,出现以下错误。注意 Python/2.6
$ sudo pip install distribute
Exception:
Traceback (most recent call last):
File "/Library/Python/2.6/site-packages/pip-1.3.1-py2.6.egg/pip/basecommand.py", line 139, in main
status = self.run(options, args)
File "/Library/Python/2.6/site-packages/pip-1.3.1-py2.6.egg/pip/commands/install.py", line 258, in run
import setuptools
ImportError: No module named setuptools
Storing complete log in /Users/brendanspillane/Library/Logs/pip.log
localhost:~ brendanspillane$
我相信 Python/2.6 是这里的问题。结果,我尝试设置我的 Python 路径(我的第一次)使用这个问题作为参考“在 mac 上更改 python 路径?” 我输入了
PATH="/Library/Frameworks/Python.framework/Versions/2.7/bin:${PATH}"
export PATH
这没有明显的效果。
但是我仍然无法运行sudo pip install distribute
并不断收到相同的错误。
谁能帮我?它是我的 Python 路径吗?还是我看错了方向?
任何帮助一如既往,非常感谢。
困境