我想使用python的macports版本而不是Leopard附带的版本.
别.Apple提供各种依赖系统Python的系统实用程序(特别是Python"框架"构建); 删除它会导致你的问题.
相反,修改PATH变量ENVIRON你~/.bash_profile
把/opt/local/bin
第一.
我已安装:
$ which python /usr/bin/python $ which python2.5 /opt/local/bin/python2.5
我还在我的帖子中添加了以下内容.profile
:
export PATH=/opt/local/bin:/opt/local/sbin:$PATH
使用python_select端口切换python解释器.
sudo port install python25 sudo port install python_select sudo python_select python25
这将符号链接/opt/local/bin/python
到所选版本.然后PATH
如上所述导出.
python_select
现已弃用,请改用:
sudo port select python python26