📜  在linux中安装python3.6 - Python代码示例

📅  最后修改于: 2022-03-11 14:47:05.846000             🧑  作者: Mango

代码示例1
$ sudo nano /etc/apt/sources.list
# add
deb http://ftp.de.debian.org/debian testing main
$ echo 'APT::Default-Release "stable";' | sudo tee -a /etc/apt/apt.conf.d/00local
$ sudo apt-get update
$ sudo apt-get -t testing install python3.6
$ python3.6 -V