How to install Python in Windows 11?
Step 1 — Downloading the Python Installer.
https://www.python.org/downloads/
Step 2 — Running the Executable Installer.
- We downloaded the Python 3.11.4 Windows 64bit installer.
- Run the installer. Make sure to select both the checkboxes at the bottom and then click Install Now.


Step 3 — Verify the Python Installation.
Open the command prompt.
- Type ‘python’ and press enter.
- The version of the python which you have installed will be displayed if the python is successfully installed on your windows.
Open the command prompt.
- Enter pip –V to check if pip was installed.
- Pip is a powerful package management system for Python software packages. Thus, make sure that you have it installed.
- To verify if pip was installed, follow the given steps −
Comments
Post a Comment