Here we will be discussing how to get the answer to all questions related to installing Python on Windows. Python was developed by Guido van Rossum in the early 1990s and its latest version is 3.11, we can simply call it Python3.
How to Download and Install Python?
To understand how to install Python You need to know What Python is and where it is actually installed in your system. Let’s consider a few points:
- Python is a widely used general-purpose, high-level programming language.
- Every Release of Python is open-source. Python releases have also been General Public License (GPL) -compatible.
- Any version of Python can be downloaded from the Python Software Foundation website at python.org.
- Package manager through which you can directly install Python on your Operating System
Install Python on Windows 10
Since Windows doesn’t come with Python preinstalled, it needs to be installed explicitly. Here we will define step by step tutorial on How to install Python on Windows. Follow the steps below :
Steps to Download Python on Windows 10
Step 1: First and foremost step is to open a browser and type https://www.python.org/downloads/windows/
Step 2: Underneath the Python Releases for Windows find the Latest Python 3 Release – Python 3.11.2 (the latest stable release as of now is Python 3.11.2).
Step 3: On this page move to Files and click on Windows x86-64 executable installer for 64-bit or Windows x86 executable installer for 32-bit.
Steps to Install Python on Windows 10
Here we are providing the installation process of Python 3.11.2 on Windows
- Run the Python Installer for how to install Python on the Windows downloads folder
- Make sure to mark Add Python 3.11 to PATH otherwise you will have to do it explicitly. It will start installing Python on Windows.
After installation is complete click on Close. Bingo..!! Python is installed. Now go to Windows and type IDLE.
- This is Python Interpreter also called Python Shell. I printed Hello geeks, python is working smoothly.
- The three greater than >>> sign is called the Python command prompt, where we write our program and with a single enter key, it will give results so instantly.