在 Ubuntu 19.04 上將預設 python 版本改回 3.7

在 Ubuntu 19.04 上將預設 python 版本改回 3.7

由於某種原因,我在 Ubuntu 19.04 上安裝了 python3.5.2,現在我想將 python3.7 設定為python3終端機上命令的預設值,甚至從我的系統中刪除 3.5.2 版本。 3.5.2的安裝過程是手動的python3.5.2,且目錄中沒有/usr/bin

$ ls /usr/bin/python*

lrwxrwxrwx 1 root root       7 Mar  4 19:18 /usr/bin/python -> python2
lrwxrwxrwx 1 root root       9 Mar  4 19:18 /usr/bin/python2 -> python2.7
-rwxr-xr-x 1 root root 3691008 Apr  6 06:12 /usr/bin/python2.7
lrwxrwxrwx 1 root root      33 Apr  6 06:12 /usr/bin/python2.7-config -> x86_64-linux-gnu-python2.7-config
lrwxrwxrwx 1 root root      16 Mar  4 19:18 /usr/bin/python2-config -> python2.7-config
lrwxrwxrwx 1 root root      25 Jun 11 10:25 /usr/bin/python3 -> /etc/alternatives/python3
-rwxr-xr-x 2 root root 4877888 Apr  3 10:09 /usr/bin/python3.7
lrwxrwxrwx 1 root root      33 Apr  3 10:09 /usr/bin/python3.7-config -> x86_64-linux-gnu-python3.7-config
-rwxr-xr-x 2 root root 4877888 Apr  3 10:09 /usr/bin/python3.7m
lrwxrwxrwx 1 root root      34 Apr  3 10:09 /usr/bin/python3.7m-config -> x86_64-linux-gnu-python3.7m-config
lrwxrwxrwx 1 root root      16 Mar 26 14:55 /usr/bin/python3-config -> python3.7-config
lrwxrwxrwx 1 root root      10 Mar 26 14:55 /usr/bin/python3m -> python3.7m
lrwxrwxrwx 1 root root      17 Mar 26 14:55 /usr/bin/python3m-config -> python3.7m-config
lrwxrwxrwx 1 root root      14 Mar  4 19:18 /usr/bin/python-config -> python2-config


$ python3.7 -V
Python 3.7.3

$ python3.5 -V
Python 3.5.2

$ python3 -V
Python 3.5.2

系統中的一些其他功能也被破壞。例如,當我使用jupyter notebook它時,它使用 python3.5.2 作為其內核,並且它無法識別我為 3.7 版本安裝的庫。那麼如何將python版本還原到Ubuntu 19.04預設值呢?

相關內容