15 Days of python: Day-1
I am starting this new series of blog '15 Days of python'. This will be a quick series and will be based on my personal experience while working with python and faced difficulties. Let's start -
Installation on window:
https://www.python.org/downloads/windows/ go to the link and download installer then set your path and you are good to go.
Installation on Ubuntu :
If you are using Ubuntu 16.10 or newer, then you can easily install Python 3.6 with the following commands:
If you’re using another version of Ubuntu (e.g. the latest LTS release), we recommend using the deadsnakes PPA to install Python 3.8:
If you are using other Linux distribution, chances are you already have Python 3 pre-installed as well. If not, use your distribution’s package manager. For example on Fedora, you would use dnf:
Note that if the version of the
python3
package is not recent enough for you, there may be ways of installing more recent versions as well, depending on you distribution. For example installing the python36
package on Fedora 25 to get Python 3.6. If you are a Fedora user, you might want to read about multiple Python versions available in Fedora.
Comments