How to install pip on windows

1.2K    Asked by KunalJha in Python , Asked on Sep 16, 2025

How can you install pip on Windows, and what steps are required to set it up properly? This guide walks you through the installation process so you can easily manage Python packages on your system.

Answered by Csaba Toth

Installing pip on Windows is quite simple and is essential for managing Python packages efficiently. Pip is the standard package manager for Python, allowing you to install, update, and remove libraries with ease.

If you already have Python installed on your Windows system, pip often comes bundled with it (especially with Python 3.4 and later). However, if it’s missing, you can install it manually.

Steps to Install Pip on Windows:

Check if pip is already installed

 Open Command Prompt and type:

   pip --version

  1.  If pip is installed, you’ll see the version number.
  2. Download get-pip.py
  3.  If pip is not installed, download the get-pip.py file from the official Python website.

Run the script

 Navigate to the folder where get-pip.py is saved and run:

   python get-pip.py

 This will install pip on your system.

Verify installation

 Again, type:

   pip --version

 to confirm that pip has been installed successfully.

Add pip to PATH (if required)

 Sometimes Windows might not recognize pip if it’s not added to the PATH. You can update the environment variables to include the Scripts folder inside your Python installation directory.

Key points:

  • Pip usually comes pre-installed with newer versions of Python.
  • Use python -m pip install if pip alone doesn’t work.
  • Adding pip to PATH ensures you can use it from anywhere in Command Prompt.



Your Answer

Interviews

Parent Categories