在Linux中,将Python 3设置为默认Python的方法取决于你使用的发行版
对于基于Debian的发行版(如Ubuntu):
- 打开终端。
- 首先,确保已经安装了Python 3。如果没有,请使用以下命令安装:
sudo apt update sudo apt install python3
- 安装
update-alternatives
工具(如果尚未安装):
sudo apt install update-alternatives
- 使用
update-alternatives
将Python 3设置为默认版本:
sudo update-alternatives --install /usr/bin/python python /usr/bin/python3 1
- 确认Python 3已设置为默认版本:
sudo update-alternatives --config python
在列表中选择Python 3对应的选项。
对于基于RPM的发行版(如Fedora、CentOS):
- 打开终端。
- 首先,确保已经安装了Python 3。如果没有,请使用以下命令安装:
sudo yum install python3
或者
sudo dnf install python3
- 使用
alternatives
工具将Python 3设置为默认版本:
sudo alternatives --install /usr/bin/python python /usr/bin/python3 1
- 确认Python 3已设置为默认版本:
sudo alternatives --config python
在列表中选择Python 3对应的选项。
现在,Python 3应该已经成为你的系统默认Python版本。