ubuntu安装python
时间: 2023-07-06 21:44:04 浏览: 63
安装python
在 Ubuntu 上安装 Python 可以通过以下步骤:
1. 打开终端,输入以下命令更新软件包列表:
```
sudo apt update
```
2. 输入以下命令安装 Python:
```
sudo apt install python3
```
3. 等待安装完成后,可以通过以下命令检查 Python 版本:
```
python3 --version
```
4. 如果需要安装 Python 的其他版本,可以使用以下命令安装:
```
sudo apt install python3.x
```
其中 x 为需要安装的 Python 版本号,例如安装 Python 2.7:
```
sudo apt install python2.7
```
注意:当前最新的 Python 版本是 Python 3.x,建议使用 Python 3.x 版本进行开发。
阅读全文