deepin安装python3
时间: 2023-11-28 17:45:32 浏览: 90
deepin20.9操作系统安装Python3.12.2记录
以下是在Deepin系统上安装Python3的步骤:
1.打开终端,使用以下命令更新系统软件包列表:
```shell
sudo apt-get update
```
2.使用以下命令安装Python3:
```shell
sudo apt-get install python3
```
3.使用以下命令检查Python3是否已经成功安装:
```shell
python3 --version
```
如果Python3已经成功安装,将会输出Python3的版本号。
阅读全文