主要问题:
我最近安装了 Python3.3 - 如果我现在在终端中运行:(python script.py
其中 script.py 在 3.3 版中编码)我将得到一个 python 2.7 输出,例如:
print('String',Var) --> ('String',Var)
Instead of:
print('String, Var) --> String Var
如何使用 Macport 轻松卸载 Python 2.7(无需阅读 Shell 命令(时间限制)?) 这个没有用。
第二个(较小的)问题:
如果我输入 Terminal python
,我会得到 python2.7 idle 作为输出。我怎样才能改变它,以便命令 python 引用 python3.3(而不是使用命令 python3)
(关于我:Python2.7新手,完全没有Shell知识,安装了OS X 10.8.4 User,Xcode和Macport。)