美文网首页
Python切换系统默认版本

Python切换系统默认版本

作者: 1234yws | 来源:发表于2019-04-28 10:27 被阅读0次

一、连接版本

update-alternatives --install /usr/bin/python python /usr/bin/python3 1

update-alternatives --install /usr/bin/python python /usr/bin/python2 0

update-alternatives --install /usr/bin/python python /usr/bin/python3.7.3 2

二、列出已经链接的版本

update-alternatives --list python

三、选择版本,

update-alternatives --config python

四、移除已经链接的版本

update-alternatives --remove python /usr/local/Python-3.7.2

相关文章

网友评论

      本文标题:Python切换系统默认版本

      本文链接:https://www.haomeiwen.com/subject/laornqtx.html