如何把python 2替换成python 3
时间: 2023-07-27 08:18:32 浏览: 84
在大多数 Linux 发行版中,Python 2 和 Python 3 可以并存。如果你想使用 Python 3 作为默认版本,你可以尝试以下方法:
1. 在终端中输入以下命令,查看当前系统中默认的 Python 版本:
```
python --version
```
2. 如果默认版本是 Python 2.x,你可以创建一个别名将 python 命令指向 Python 3,执行以下命令:
```
alias python=python3
```
这样,你在执行 python 命令时,就会默认使用 Python 3.x 版本。
3. 如果你希望这个别名永久生效,可以将上述命令加入到 ~/.bashrc 或者 ~/.bash_profile 文件中。
```
echo "alias python=python3" >> ~/.bashrc
```
或者
```
echo "alias python=python3" >> ~/.bash_profile
```
然后输入以下命令使修改生效:
```
source ~/.bashrc
```
或者
```
source ~/.bash_profile
```
这样,你就成功将系统默认的 Python 版本替换成了 Python 3。
阅读全文