更改Ubuntu默认python版本的方法
程序员文章站
2022-05-26 15:49:07
Ubuntu系统中会存在多个 Python 的可执行二进制文件。一般Ubuntu默认的Python版本都为2.x, 如何改变Python的默认版本呢?下面来一起看看吧。 你可以按照以下方法使用 ls 命令来查看你的系统中都有那些 Python 的二进制文件可供使用。 像我的有2.7、3、3.5版本 ......
ubuntu系统中会存在多个 python 的可执行二进制文件。一般ubuntu默认的python版本都为2.x, 如何改变python的默认版本呢?下面来一起看看吧。
你可以按照以下方法使用 ls 命令来查看你的系统中都有那些 python 的二进制文件可供使用。
$ ls /usr/bin/python*
像我的有2.7、3、3.5版本
我们可以使用 update-alternatives 来为整个系统更改 python 版本。以 root 身份登录,首先罗列出所有可用的 python 替代版本信息:
# update-alternatives --list python update-alternatives: error: no alternatives for python
如果出现以上所示的错误信息,则表示 python 的替代版本尚未被 update-alternatives 命令识别。想解决这个问题,我们需要更新一下替代列表,将 python2.7 和 python3.5 放入其中。
# update-alternatives --install /usr/bin/python python /usr/bin/python2.7 1 update-alternatives: using /usr/bin/python2.7 to provide /usr/bin/python (python) in auto mode # update-alternatives --install /usr/bin/python python /usr/bin/python3.5 2 update-alternatives: using /usr/bin/python3.5 to provide /usr/bin/python (python) in auto mode
--install 选项使用了多个参数用于创建符号链接。最后一个参数指定了此选项的优先级,如果我们没有手动来设置替代选项,那么具有最高优先级的选项就会被选中。这个例子中,我们为 /usr/bin/python3.5 设置的优先级为2,所以update-alternatives 命令会自动将它设置为默认 python 版本。
接下来,我们再次列出可用的 python 替代版本。
# update-alternatives --list python /usr/bin/python2.7 /usr/bin/python3.5
现在开始,我们就可以使用下方的命令随时在列出的 python 替代版本中任意切换了。
# update-alternatives --config python
推荐阅读
-
vue.js如何更改默认端口号8080为指定端口的方法
-
Ubuntu 16.04 LTS中源码安装Python 3.6.0的方法教程
-
Ubuntu 16.04 LTS中源码安装Python 3.6.0的方法教程
-
更改Ubuntu默认python版本的两种方法python-> Anaconda
-
python 2.6.6升级到python 2.7.x版本的方法
-
ubuntu下让python脚本可直接运行的实现方法
-
Python实现更改图片尺寸大小的方法(基于Pillow包)
-
Python实现更改图片尺寸大小的方法(基于Pillow包)
-
Mysql更改默认引擎为Innodb的步骤方法
-
ubuntu 16.04下python版本切换的方法