【Linux】Ubuntu16.04安装python3.6
程序员文章站
2022-05-01 15:52:43
...
Ubuntu16.04系统自带的是python2.7
python --version
现在安装python3.6,让python2和python3共存。
sudo add-apt-repository ppa:jonathonf/python-3.6
这里安装python3.6的时候也会安装python3.5,并且不能将python3.5卸载。
sudo apt-get update
sudo apt-get install python3.6
可以看出,确实同时多了python3.5和python3.6。
而
python3 --version
是指向python3.5的。如果想python3指向python3.6,那么
cd /usr/bin
sudo ls -l python*
sudo rm python3
sudo ln -sf python3.6 python3
sudo rm python3m
sudo ln -sf python3.6m python3m
sudo ls -l python*
python3 --version
已经指向python3.6了。
上一篇: Ubuntu下校园网锐捷客户端的连接