How to install python in Ubuntu.
Hi..Just now i deploy the ubuntu image in my linode.I want to install python.How to do that? which command i need to use it?
1 Reply
hmorris
Linode Staff
Hey there,
You may already have it installed, you can run the command below to verify:
$ python3 --version && python --version
Python 3.5.2
Python 2.7.12
If that command doesn't produce any output, then you can install Python with the commands below:
$ sudo apt-get install python
$ sudo apt-get install python3.6