1. 程式人生 > 其它 >Linux提示Python版本

Linux提示Python版本

技術標籤:Linuxlinuxdocker

今天想給虛擬機器安裝docker, 在安裝docker-compose的時候報錯, 提示

imageio requires Python ‘>=3.5’ but the running Python is 2.7.13

解決辦法:

  1. cd /usr/bin/

  2. ls -l | grep python
    可以看到是python指向的是python2,而Python2指向的是Python2.7

lrwxrwxrwx 1 root root          16 8月  14 14:26 python -> /usr/bin/python2
lrwxrwxrwx 1 root root           9 10月  3  2017 python2 -
> python2.7
  1. 只要把python的指向改為python3即可
 sudo rm -rf python
 sudo ln -s /usr/bin/python3  /usr/bin/python

最後執行 python, 可以看到已經python版本已經提升為3.7.3
在這裡插入圖片描述