Yeah ! download is comleted. Lets start installing. Click the exe file just we downloaded.
Highlight the Install Now (or Upgrade Now) message, and then click it
Ensure that both the Install launcher for all users (recommended) and the Add Python 3.9 to PATH checkboxes at the bottom are checked: typically only first is checked by default.
If the installation is success , the following messgae will be displayed.
Alternatively, You can download and install distributions such as Anaconda or Miniconda
According to Wiki, An integrated development environment is a software application that provides comprehensive facilities to computer programmers for software development. An IDE normally consists of at least a source code editor, build automation tools and a debugger.
The following IDEs are more unqiue and efficiant for Python Programming
PyCharm is an integrated development environment used in computer programming, specifically for the Python language. It is developed by the Czech company JetBrains
You can download and install the community version completly free from Here
I am personaly using Pycharm for all of my development works from simple to advanced development works.
Spyder is an open-source cross-platform integrated development environment for scientific programming in the Python language.
It can be downloaded and install from here. I suggest you that, install it along with Anaconda (By Default anaconda includes Spyder)
It has multiple features the most usefull feature i found is,
Along with that it includes other features like,
In my experiance its very handly when it comes to developing machine learning or data processing tasks.
Project Jupyter exists to develop open-source software, open-standards, and services for interactive computing across dozens of programming languages.
Some of feature of jupyter is,
In my exeriance its best for Machine Learning activities , as it has web based intractive interface.
It can be installed via PIP
pip install jupyterlab
to run it open your command prompt and type
jupyter notebook
it can be accesed in web browser from using http://localhost:8888/tree
alternatively it can be try online from here
Colaboratory, or "Colab" for short, allows you to write and execute Python in your browser, with
Colab notebook that lets you write and execute code.
For example, here is a code cell with a short Python script that computes a value, stores it in a variable, and prints the result:
Is it deficult to start using Google Colab, No! its pretty simple, you just need a google account to start using it.
Ok. Finally we done setting up the environment using by installing Python and setting up one of your favorite IDE.
Its time to create simple python script and execute it via command prompt.
print("Hello world, I am Python")
python hello_world.py
yes, we just executed a python script. Congratulations! your journey just started in the world of python.