Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to specify version of python to run a script?

Tags:

python

I'm learning python now using a mac which pre-installed python 2.7.5. But I have also installed the latest 3.4.

I know how to choose which interpreter to use in command line mode, ie python vs python 3 will bring up the respective interpreter.

But if I just write a python script with this header in it "#!/usr/bin/python" and make it executable, how can I force it to use 3.4 instead of 2.7.5?

As it stands, print sys.version says:

2.7.5 (default, Aug 25 2013, 00:04:04) [GCC 4.2.1 Compatible Apple LLVM 5.0 (clang-500.0.68)]

like image 942
rockhammer Avatar asked Dec 14 '22 23:12

rockhammer


2 Answers

Set the shebang (script header) to the path to python3.4 which you can get using which.

For example, here's what do I have:

$ which python
/usr/bin/python
$ which python3.4
/usr/local/bin/python3.4

Then, just set the shebang appropriately:

#!/usr/local/bin/python3.4
like image 62
alecxe Avatar answered Dec 30 '22 04:12

alecxe


You know, you can start python with py -specific version To run a script on interpreter with a specific version you'll just start your script with following parameters, py yourscript.py -version

like image 39
Juko Avatar answered Dec 30 '22 06:12

Juko