easy_install和macports没有在Mac OS X 10.8上安装到正确的Python版本

时间:2013-10-28 17:33:24

标签: python macports easy-install egg

我最近从Snow Leopard升级到Mountain Lion,它似乎已经删除了我的所有Python包。我想将它们重新安装到系统Python(2.6),但我选择的任何方法(source / easy_install / port)都要安装到2.7。有时候我可以将egg文件拖到正确的目录中然后就可以了,但有时却没有。

据说,Python 2.6处于活动状态。为什么easy_install和port想要使用2.7,我该如何解决?

$ python
Python 2.6.7 (r267:88850, Oct 11 2012, 20:15:00)
[GCC 4.2.1 Compatible Apple Clang 4.0 (tags/Apple/clang-418.0.60)] on darwin

$ sudo port select python
Available versions for python:
    base.mp_1382830518
    none
    none.mp_1382830518
    python25-apple
    python25-apple.mp_1382830518
    python26
    python26-apple (active)
    python26-apple.mp_1382830518
    python27
    python27-apple
    python27-apple.mp_1382830518

1 个答案:

答案 0 :(得分:1)

我的Macports为每个Python提供了不同的easy_install命令:

 [~]% easy_install
 easy_install      easy_install-2.5  easy_install-2.6  easy_install-2.7  easy_install-3.2

但是从不对系统Python使用easy_installAlways use virtualenv并且您可以避免系统更新等问题擦除您的Python环境。