update-alternatives --config python
时间: 2024-10-31 08:07:24 浏览: 6
update-alternatives
`update-alternatives --config python` 这个命令是一个Linux系统管理工具,用于配置程序的替代版本。在Unix-like操作系统如Ubuntu、Debian等中,Python作为开源语言有多个版本可供选择,比如默认的系统Python和一些用户自安装的Python发行版(如Python 3.8、3.9等)。这个命令允许你设置系统的默认Python解释器,让用户可以在不同的版本之间切换。
当你运行这个命令时,它通常会显示一系列的选项,每个选项代表一个Python版本,并询问你想要设置哪一项为默认。输入数字序号即可完成选择。例如:
```
There are 4 choices for the alternative python (providing /usr/bin/python):
1 /usr/bin/python2.7
2 /usr/bin/python3.6
3 /usr/bin/python3.8
4 /usr/bin/python3.9
Enter to keep the current choice[+], or type selection number: 3
```
这里如果你选择3,那么`python`命令将指向`/usr/bin/python3.8`。
阅读全文