ubuntu18.04 python版本切换

2021-06-15 18:05

阅读:660

标签:style   ack   管理员   link   src   pytho   date   native   http   

update-alternatives是ubuntu系统中专门维护系统命令链接符的工具,通过它可以很方便的设置系统默认使用哪个命令、哪个软件版本,比如,我们在系统中同时安装了python2.7和python3.6两个版本,而我们又希望系统默认使用的是python3.6,那怎么办呢?通过update-alternatives就可以很方便的实现了。

1.更新替代列表(管理员权限下)

命令格式:update-alternatives --install

is the symlink pointing to /etc/alternatives/.
  (e.g. /usr/bin/pager)
is the master name for this link group.
  (e.g. pager)
is the location of one of the alternative target files.
  (e.g. /usr/bin/less)
is an integer; options with higher numbers have higher priority in
  automatic mode.

 

update-alternatives --install /usr/bin/python python /usr/bin/python2.7 1

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

 

2、查看替代列表:

update-alternatives --list python

技术分享图片

 

3、切换:

update-alternatives --config python

技术分享图片

 

ubuntu18.04 python版本切换

标签:style   ack   管理员   link   src   pytho   date   native   http   

原文地址:https://www.cnblogs.com/jasonlixuetao/p/9729753.html


评论


亲,登录后才可以留言!