macports使用python安装

时间:2012-05-23 20:36:58

标签: python macports

对不起,我确定这是一个愚蠢的问题。

我已经使用macports成功安装了python 2.6。我如何使用该版本的python?我在术语中输入python时显示的版本是python 2.7。

谢谢!

3 个答案:

答案 0 :(得分:2)

使用port select命令选择它

  1. 列出可供选择的可用蟒蛇:

    port select --list python
    
  2. 选择特定端口(例如python26):

    port select python python26
    
  3. 但是python2.6也会选择特定版本的

答案 1 :(得分:0)

你应该在Super User

从终端呼叫:

python26 PYTHONFILE.py

答案 2 :(得分:-1)

在Mac上查找Python的一种方法是输入命令行:

  

哪个python

当我输入时,我得到:

  

的/ usr /斌/蟒

您可以通过输入

查看其他蟒蛇
  

ls / usr / bin / python *

例如,我看到了:

  

的/ usr /斌/蟒

     

/usr/bin/python2.7

     

的/ usr /斌/蟒-配置

     

/usr/bin/python2.7-config

     

/usr/bin/python2.5

     

的/ usr /斌/ pythonw

     

/usr/bin/python2.5-config

     

/usr/bin/pythonw2.5

     

/usr/bin/python2.6

     

/usr/bin/pythonw2.6

     

/usr/bin/python2.6-config

     

/usr/bin/pythonw2.7

然后,您可以通过键入

来运行v2.6
  

/usr/bin/python2.6

或者,因为/ usr / bin /可能在您的路径中,只需:

  

python2.6的

这不完全是MacPorts,抱歉。