更改Ubuntu下默认Python版本
程序员文章站
2022-06-21 08:58:58
更改Ubuntu下默认Python版本 首先查看系统内有哪些版本的Python ls /usr/bin/python 查看当前python版本 python --version 基于用户修改默认版本 想要为某个特定用户修改 Python 版本,只需要在其 home 目录下创建一个 alias(别名) ......
更改ubuntu下默认python版本
首先查看系统内有哪些版本的python
-
ls /usr/bin/python
查看当前python版本
-
python --version
基于用户修改默认版本
- 想要为某个特定用户修改 python 版本,只需要在其 home 目录下创建一个 alias(别名) 即可。打开该用户的 ~/.bashrc文件,添加新的别名信息来修改默认使用的 python 版本。
-
alias python='/usr/bin/python3.6'
- 一旦完成以上操作,重新登录或者重新加载 .bashrc 文件,使操作生效。
-
. ~/.bashrc
在系统级修改 python 版本
- 使用 update-alternatives 来为整个系统更改 python 版本。以 root 身份登录,首先罗列出所有可用的 python 替代版本信息:
-
update-alternatives --list python
update-alternatives: error: no alternatives for python
- 如果出现以上所示的错误信息,则表示 python 的替代版本尚未被 update-alternatives 命令识别。想解决这个问题,我们需要更新一下替代列表,将 python2.7 和 python3.6 放入其中。
-
update-alternatives --install /usr/bin/python python /usr/bin/python2.7
update-alternatives --install /usr/bin/python python /usr/bin/python3.6
- --install 选项使用了多个参数用于创建符号链接。最后一个参数指定了此选项的优先级,如果我们没有手动来设置替代选项,那么具有最高优先级的选项就会被选中。这个例子中,我们为 /usr/bin/python3.6 设置的优先级为2,所以update-alternatives 命令会自动将它设置为默认 python 版本。
-
python --version
此时查看版本已经是python 3.6
- 接下来,我们再次列出可用的 python 替代版本。
-
update-alternatives --list python /usr/bin/python2.7 /usr/bin/python3.6
- 现在开始,我们就可以使用下方的命令随时在列出的 python 替代版本中任意切换了。
-
update-alternatives --config python
移除替代版本
- 一旦我们的系统中不再存在某个 python 的替代版本时,我们可以将其从 update-alternatives 列表中删除掉。例如,我们可以将列表中的 python2.7 版本移除掉。
-
update-alternatives --remove python /usr/bin/python2.7
- 方法2、移除软连接
-
rm -rf /data/logs ln -s /temp/logs /data/logs
上一篇: python 3.x实现特征选择ReliefF算法
下一篇: 甜皮鸭是甜的吗?乐山还有哪些名小吃?
推荐阅读
-
ubuntu16.04使用Anaconda创建对应python版本的虚拟环境
-
Python实现在Linux系统下更改当前进程运行用户
-
mac下pycharm设置python版本的图文教程
-
Ubuntu18.04+cuda10.1+python3.7下配置pytorch0.4.0步骤
-
Windows下使Python2.x版本的解释器与3.x共存的方法
-
Ubuntu18.04直接安装python3.7或者升级自带的python3.6版本之后导致终端无法打开的解决办法
-
Centos5.x下升级python到python2.7版本教程
-
更改Ubuntu下默认Python版本
-
linux安装python修改默认python版本方法
-
Ubuntu下使用python读取doc和docx文档的内容方法