Skip to content

Instantly share code, notes, and snippets.

@patrickmmartin
Created February 5, 2017 09:48
Show Gist options
  • Star 33 You must be signed in to star a gist
  • Fork 15 You must be signed in to fork a gist
  • Save patrickmmartin/5b6b2ddecd29d6a1b2ffee2d8eea31ec to your computer and use it in GitHub Desktop.
Save patrickmmartin/5b6b2ddecd29d6a1b2ffee2d8eea31ec to your computer and use it in GitHub Desktop.
update-alternatives for python3 on Ubuntu

Ubuntu 16 default python is almost python 3

Loads of solutions exist, but for changing the system default, alias is not the way to go.

$ update-alternatives --list python update-alternatives: error: no alternatives for python

ls -larth `which python`*
-rwxr-xr-x 2 root root 4.3M Nov 17 19:23 /usr/bin/python3.5
-rwxr-xr-x 1 root root 3.4M Nov 19 09:35 /usr/bin/python2.7
lrwxrwxrwx 1 root root   24 Feb  5 09:36 /usr/bin/python -> /etc/alternatives/python

So we have 2 - use these in update-alernatives


sudo update-alternatives --install /usr/bin/python python /usr/bin/python2.7 1
sudo update-alternatives --install /usr/bin/python python /usr/bin/python3.5 2



$ sudo update-alternatives --config python
There are 2 choices for the alternative python (providing /usr/bin/python).

  Selection    Path                Priority   Status
------------------------------------------------------------
* 0            /usr/bin/python3.5   2         auto mode
  1            /usr/bin/python2.7   1         manual mode
  2            /usr/bin/python3.5   2         manual mode

Press <enter> to keep the current choice[*], or type selection number:

Done

$ python --version
Python 3.5.2
$ python2 --version
Python 2.7.12
$ python3 --version
Python 3.5.2
@growtopiajaw
Copy link

Updated gist with python3 at https://gist.github.com/GrowtopiaJaw/7c5b7556c9b9a48aa68fe063107e1a5d. Credits added and thanks patrickmmartin!

@thom-nic
Copy link

Can anyone comment as to whether this is problematic on Bionic? Ref: https://stackoverflow.com/questions/43062608/how-to-update-alternatives-to-python-3-without-breaking-apt

@hemulin
Copy link

hemulin commented Oct 5, 2018

@thom-nic
Just followed it after upgrading to 18.04.1. It worked great.

@patrickmmartin
Thanks 👍

@javiergarval
Copy link

javiergarval commented Feb 12, 2019

Changing between python configurations (python2 to python3.7) give me this thread error:

Original exception was:
Traceback (most recent call last):
  File "/usr/bin/pip", line 9, in <module>
    from pip import main
ImportError: cannot import name 'main' from 'pip'

Which is properly solved modifying /usr/bin/pip file with this:

from pip import main
if __name__ == '__main__':
    sys.exit(main())

But, again, if I change the python interpeter, pip conf is complaining.

Do you know any possible solution?

Thanks!

@malvernbright
Copy link

That worked for me.....thanx

@MVoz
Copy link

MVoz commented Nov 13, 2019

python2
sudo update-alternatives --install /usr/bin/python python /usr/bin/python2.7 1
sudo update-alternatives --install /usr/bin/python python /usr/bin/python2.4 5

python3
sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.5 5
sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.7 1

@husseinpasha
Copy link

Thanks!

@EAsencios
Copy link

Thanks!!

@duwudi
Copy link

duwudi commented Jan 5, 2021

Thanks!

@50935
Copy link

50935 commented Feb 10, 2021

Hello , when i started upgrade python 3,

dpkg: error: unable to create new file '/var/lib/dpkg/arch-new': permission denied

@arky
Copy link

arky commented May 17, 2022

On Ubuntu 22.04 LTS. You'll need to add Deadsnakes ppa to ensure you have python 3 version (3.8, 3.9) available.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment