Ubuntu安装Python3.6

2023-01-31 02:01:38 ubuntu 安装 python3

1、配置软件仓库

sudo add-apt-repository ppa:jonathonf/python-3.6

2、检查系统软件包并安装python3.6

sudo apt-get update

sudo apt-get install Python3.6

3、把Python3.6改为Python3首选项

sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.5 1

sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.6 2

sudo update-alternatives --config python3

4、测试

终端输入python3 -V

相关文章