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
@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