0

I downloaded a version of Python because I would like to program in the language, but I have no idea how to actually download it. There are many files in the download folder, but I have no idea what to do with them. Can someone walk me through a step-by-step process?

Apologies, I'm very new to Ubuntu and Linux in general.

  • 1
    why? python is an integral part of any Ubuntu version. Just type "python" on commandline – Rinzwind Sep 11 '18 at 16:58
  • Python is built into Ubuntu. It is used for many of the system tasks. Downloading and installing a different version of python will almost certainly break Ubuntu. – user68186 Sep 11 '18 at 17:03

1 Answers1

1

Ubuntu already comes with Python. Still if you want to install python in Ubuntu then use command

sudo apt install python3 or sudo apt-get install python3.6

Dev
  • 176