how to update python on Ubuntu using terminal commands
get link by https://www.python.org/downloads/source/
go thorough the above link and select your needed version and and copy that link address and past in your termainal after Wget (Link), As show in below.
wget https://www.python.org/ftp/python/3.6.5/Python-3.6.5.tgz
$ tar -xvf Python-3.6.5.tgz
$ cd Python-3.6.5/
$ ./configure
$ python3
Comments
Post a Comment