How to make 'python' program command execute Python 3?
The python program command executes Python 2. Python 3 can be executed using the python3 command. How can Python 3 be executed using the python command?
8 Answers
You can install a system-wide package:
$ sudo apt install python-is-python3See caveats:python-is-python3 package in Ubuntu 20.04 - what is it and what does it actually do?
A simple safe way would be to use an alias. Place this into ~/.bashrc or ~/.bash_aliases file:
alias python=python3After adding the above in the file, run source ~/.bashrc or source ~/.bash_aliases.
For example:
$ python --version
Python 2.7.6
$ python3 --version
Python 3.4.3
$ alias python=python3
$ python --version
Python 3.4.3To circumvent the alias use the command built-in command:
$ command python --version
Python 2.7.6Another way to circumvent the alias is to use \ before the command.
$ \python --version
Python 2.7.6To disable the alias in the current shell use the unalias built-in command:
$ unalias python
$ python --version
Python 2.7.6 24 On Ubuntu 20.04+ just install the python-is-python3 package:
sudo apt install python-is-python3On top of that, you can prevent Python 2 from being installed as a dependency of something in the future with apt-mark hold:
sudo apt-mark hold python2 python2-minimal python2.7 python2.7-minimal libpython2-stdlib libpython2.7-minimal libpython2.7-stdlib 6 [June 2016] The recommended place for information on the transition is official Ubuntu Python page.
From the Ubuntu wiki:
For both Ubuntu and Debian, we have ongoing project goals to make Python 3 the default, preferred Python version in the distros.
What this does not mean:
/usr/bin/pythonwill point to Python 3. No, this is not going to happen (unless PEP 394 advocates otherwise, which is doubtful for the foreseeable future)./usr/bin/pythonand/usr/bin/python2will point to Python 2.7 and/usr/bin/python3will point to the latest supported Python 3 version.Python 2 will be removed from the archive. No, this is not going to happen. We expect Python 2.7 to remain supported and available in Ubuntu for quite a long time, given that PEP 373 promises upstream bug fix maintenance support until 2020.
It is not recommended to change the symbolic link because of other package dependencies, but they "have ongoing project goals to make Python 3 the default, preferred Python version in the distros".
For CLI use, like @Radu Rădeanu, I would recommend putting an alias in the user's ~/.bashrc, .bash_aliases file (the different files, including ~/.bash_profile, are loaded at least once, are mostly for organizational purposes, but may vary by platform). Python virtual environments also work well.
Alias examples:
alias python=python3or
alias python='/usr/bin/python3'Scripts should still use something like #!/usr/bin/env python3 for cross-compatibility.
Using env is nice for mixed use with virtual environments.
Note (thanks to @wjandrea): aliases are part of the bash runtime, not the user environment. Therefore, they are not available to the shebang (#!). If you prefer the alias python=python3, then some program.py without a shebang could be executed by invoking the aliased interpreter like this python program.py. Aliasing may also be useful for systems with multiple version of python3 like 3.4 and 3.6 together.
Update: This is the wrong way, I have learned, since Python2 and Python3 are not interchangeable.
You can try the command line tool update-alternatives.
$ sudo update-alternatives --config pythonIf you get the error "no alternatives for python" then set up an alternative yourself with the following command:
$ sudo update-alternatives --install /usr/bin/python python /usr/bin/python3 10Change the path /usr/bin/python3 to your desired python version accordingly.
Ubuntu, and the rest of the Linux distros for that matter, are still largely dependent on Python 2.7 for a number of applications and commands. If you change the default reference of "python" to Python 3.x, then a number of Python functions will start throwing assertion errors.
For example, on Ubuntu, 'pip' for one would no longer run correctly unless you directly edited the file and changed the shebang to reference '#!/usr/bin/env python2.7'. On RHEL (Red Hat Enterprise Linux) flavors such as Red Hat, Fedora and CentOS, the 'Yum' command is also dependent on Python 2.7.
My point here is that you would cause a significant amount of code to start throwing assertion errors just so you could type 'python' in the terminal to reference Python 3.x.
You're much better off with using the 'python3' command in the terminal and the shebang '#!/usr/bin/env python3' in your Python 3.x files.
Do
cd ~
gedit .bash_aliasesthen write either
alias python=python3or
alias python='/usr/bin/python3'Save the file, close the terminal and open it again.
Link
I find it very helpful to simply remove /usr/bin/python and /usr/bin/pip. This forces all programs to rely on the "python2" and "python3" commands.
Although some optional and outdated packages depend on #!/usr/bin/python to work, I would rather submit patches to those programs than continue to make weird and sometimes hard-to-debug mistakes.
cat > /usr/local/bin/py << 'EOF'
#!/bin/dash
python3 "$@"
EOF(provided you have write permission to /usr/local/bin) likewise
cat > /usr/local/bin/pyi << 'EOF'
#!/bin/dash
python3 -i "$@"
EOFthen you only type py (and use py in #! lines) for your chosen python.
2