Python Installation

This article is about python installation. In general, why is it worth to start your development journey from python ? The answer can be following:

  • it can be used in different kinds of application including web development, machine learning etc.
  • the python has strong community which provides you really nice support
  • it is just easy to learn !

To install python we need to execute following steps:

  1. Go to official python page and download python package. The package needs to fit to your operating system
https://python.org

2. After downloading, click and install python package on your desktop

3. Once python is installed, verify it by typing in command termnal following command:

python --version

You should be able to something like this:

Voilà ! You just installed python on your machine ! Congrats ! Those were three easy steps to perform python installation. Next step will be IDE setup which is covered in following article