Main problem: I recently installed Python3.3. If I run now in Terminal: python script.py (where script.py is encoded in version 3.3), I get python 2.7 output, for example:
print('String',Var) --> ('String',Var) Instead of: print('String, Var) --> String Var
How can I easily remove Python 2.7 using Macport (without reading Shell commands (time limit)?) This did not work.
Second (smaller) problem: If I type Terminal python , I will get python2.7 as output. How can I change this so that the python command applies to python3.3 (instead of using the python3 command)
(About me: Python2.7 newbie, absolutely no knowledge of Shell, OS X 10.8.4. User, Xcode and Macport are installed.)
source share