Ubuntu 下面的切换 python 版本操作

本文记录了通过update-alternatives命令手动切换系统默认Python版本的过程。从Python 3.5切换到Python 2.7,适用于需要特定Python环境的场景。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

archermind@archermind:~$ sudo update-alternatives --config python
[sudo] password for archermind: 
There are 2 choices for the alternative python (providing /usr/bin/python).

  Selection    Path                Priority   Status
------------------------------------------------------------
  0            /usr/bin/python3.5   2         auto mode
  1            /usr/bin/python2.7   1         manual mode
* 2            /usr/bin/python3.5   2         manual mode

Press <enter> to keep the current choice[*], or type selection number: 1
update-alternatives: using /usr/bin/python2.7 to provide /usr/bin/python (python) in manual mode

 

### 在 Ubuntu 上手动切换 Python 版本的具体操作Ubuntu 系统中,可以通过多种方式来实现不同 Python 版本之间的切换。以下是具体的操作方法: #### 方法一:使用 `update-alternatives` 命令 `update-alternatives` 是一种管理多个命令版本的工具,在 Ubuntu 中可以用来设置系统的默认 Python 解释器。 1. **查看当前已安装的 Python 版本** 使用以下命令列出系统中存在的所有 Python 可执行文件: ```bash ls /usr/bin/python* ``` 2. **配置可选的 Python 版本** 将不同的 Python 版本添加到 `update-alternatives` 的列表中。假设系统中有 Python 2.7 和 Python 3.6,则运行如下命令: ```bash sudo update-alternatives --install /usr/bin/python python /usr/bin/python2.7 1 sudo update-alternatives --install /usr/bin/python python /usr/bin/python3.6 2 ``` 这里的数字 `1` 和 `2` 表示优先级,数值越高越容易被选作默认解释器[^3]。 3. **选择默认的 Python 版本** 输入以下命令以交互式的方式选择所需的 Python 默认版本: ```bash sudo update-alternatives --config python ``` 然后按照提示输入对应编号即可完成切换。 #### 方法二:修改环境变量 PATH 通过调整 `$PATH` 环境变量中的路径顺序也可以改变默认使用的 Python 版本。 1. 编辑用户的 shell 配置文件(如 `.bashrc` 或者 `.zshrc`),并加入指定目录下的特定 Python 版本位置至最前头。例如如果想让 `/opt/python3.6/bin/` 成为主导则添加下面这行代码: ```bash export PATH=/opt/python3.6/bin/:$PATH ``` 2. 让更改生效: ```bash source ~/.bashrc ``` 3. 测试新设定是否成功应用: ```bash which python && python --version ``` 以上两种方法都可以有效地帮助你在同一台机器上的不同项目间灵活切换所需的不同版本Python 环境[^1][^2]。 ```python import sys print(sys.version) ``` 上述脚本可用于验证当前正在使用的 Python 版本号。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值