编程语言
首页 > 编程语言> > python双版本alternatives进行切换

python双版本alternatives进行切换

作者:互联网

文章目录

安装

wget https://www.python.org/ftp/python/3.8.1/Python-3.8.1.tgz
tar -zxvf Python-3.8.1.tgz
./configure  --prefix=/usr/local
make&&sudo make install

软连接

将Python3设置为默认

 sudo update-alternatives --install /usr/bin/python python /usr/bin/python2 100		
sudo update-alternatives --install /usr/bin/python python /usr/bin/python3 150
 选择       路径            优先级  状态
------------------------------------------------------------
* 0            /usr/bin/python3   150       自动模式
  1            /usr/bin/python2   100       手动模式
  2            /usr/bin/python3   150       手动模式

要维持当前值[*]请按<回车键>,或者键入选择的编号:1
python --version
Python 2.7.15

参考:
https://www.cnblogs.com/pscc/p/9644535.html

标签:bin,python,alternatives,Python,切换,--,usr
来源: https://blog.csdn.net/python_start/article/details/120086774