ubuntu20中安装python
时间: 2023-09-23 18:07:37 浏览: 76
Ubuntu中安装Python源代码包
在 Ubuntu 20.04 中,默认情况下已经安装了 Python 3。如果你还需要安装 Python 2,请按照以下步骤操作:
1. 打开终端,输入以下命令更新软件包列表:
```
sudo apt-get update
```
2. 安装 Python 2:
```
sudo apt-get install python
```
3. 确认 Python 2 是否安装成功:
```
python --version
```
如果安装成功,将会显示当前 Python 版本的信息。
如果你想安装 Python 3 的其他版本,可以使用以下命令:
1. 安装 Python 3:
```
sudo apt-get install python3
```
2. 安装指定版本的 Python 3:
```
sudo apt-get install python3.x
```
注意:x代表你想要安装的版本号,例如,如果你想安装 Python 3.9,可以使用以下命令:
```
sudo apt-get install python3.9
```
3. 确认 Python 3 是否安装成功:
```
python3 --version
```
如果安装成功,将会显示当前 Python 3 版本的信息。
阅读全文