I am using Ubuntu 16.04 which comes with python 2.7 and python 3.5 pre-installed. I am currently working on a project where it requires to install python 3.6 and some additional packages. I have searched the Internet but i couldn't manage to get the comprehensive tutorial steps where I could follow. Please help me. Thanks in advance...
Asked
Active
Viewed 1.8k times
1 Answers
1
This question has been answered by @edwinksl here: https://askubuntu.com/a/865569
The 3.6 version of Python doesn't seem to have been added to the official repositories for Ubuntu 16.04 LTS. However there are others that have created repositories for it, among them J Fernyhough. You can add and install Python 3.6 via his repo:
sudo add-apt-repository ppa:jonathonf/python-3.6
sudo apt-get update
sudo apt-get install python3.6
python3
after that, I still run python 3.5 as earlier. – Sashko Lykhenko Apr 01 '18 at 15:19python3.6
. Both version will be installed on your machine andpython3
is still aliasingpython3.5
(or might actually be the command, I don't know). – Bamse Apr 06 '18 at 09:08