Answers for "install python 3.7 in linux terminal"

11

linux ubuntu install python 3.7

sudo apt-get install python3.7
Posted by: Guest on April-18-2020
1

install python3.6 in linux

$ 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
Posted by: Guest on January-05-2022

Code answers related to "install python 3.7 in linux terminal"

Python Answers by Framework

Browse Popular Code Answers by Language