How To Install Python In Windows

Websolutionstuff | May-05-2022 | Categories : Python

In this article, how to install python on windows. Python is a high-level, interpreted, general-purpose programming language. Its design philosophy emphasizes code readability with the use of significant indentation. Python is dynamically-typed and garbage-collected.

So, let's see how to install python on windows 7/8/10, how to install python in windows 7 32-bit, python installs in windows, python download, download python, and python for beginners.

Step 1: Select Version of Python to Install

Python has different versions so, depends on what you want to do in python. Visit the link https://www.python.org/downloads/windows/ to download the latest release of Python. There are different versions of Python 2 and Python 3 available.

 

 

Step 2: Install Python

Search for your desired version of Python. We downloaded the Python 3.9.1 Windows 64-bit installer.

download_python

 

Step 3: Run Executable Installer

Run the Python Installer once downloaded.

Make sure you select the Install launcher for all users and Add Python 3.9 to PATH checkboxes then click Install Now.

install_Python3

 

 

The installation process will take a few minutes to complete and once the installation is successful, the following screen is displayed.

python_install_success

 

Step 4: Verify Python

Now, we verify whether the python is installed or not using the command.

  • 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.

 

 

Step 5: Verify Pip was installed

If you opted to install an older version of Python, it is possible that it did not come with Pip preinstalled. 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,

  • Open the command prompt.

  • Enter pip –V to check if pip was installed.

  • The following output appears if pip is installed successfully.

 


You might also like :

Recommended Post
Featured Post
Laravel 9 Ajax File Upload With Progress Bar
Laravel 9 Ajax File Upload Wit...

In this article, we will see the laravel 9 ajax file upload with a progress bar. we will learn how to file upload using...

Read More

Nov-15-2022

How to Upgrade from Angular 16 to Angular 17
How to Upgrade from Angular 16...

Hey everyone! If you're a developer working with Angular, you know how exciting it is when a new version is released...

Read More

Mar-18-2024

How to Install Node JS and NPM on Ubuntu 22.04
How to Install Node JS and NPM...

Hey fellow Ubuntu enthusiasts! 🐧✨ If you're looking to step into the awesome world of Node.js and npm for your web d...

Read More

Jan-12-2024

Laravel 11 Vite Install Sweetalert2 Example
Laravel 11 Vite Install Sweeta...

Hello, laravel web developers! In this article, we'll see how to install sweetalert2 in laravel 11 vite. Sweeta...

Read More

Jul-15-2024