DropVPS Team
Writer: Cooper Reagan
How to upgrade pip in cmd?

Table of Contents
What you will read?
Upgrading pip in the Command Prompt (cmd) on Windows is a straightforward process. Follow these steps to ensure you have the latest version of pip installed.
Step 1: Open Command Prompt
- Press
Win + Rto open the Run dialog. - Type
cmdand hitEnterto open the Command Prompt.
Step 2: Upgrade pip
To upgrade pip, run the following command in the Command Prompt:
python -m pip install --upgrade pip
Alternatively, if you are using Python 3 specifically, you can use:
python3 -m pip install --upgrade pip
Step 3: Verify the Upgrade
After the upgrade process is complete, you can verify that pip has been upgraded by checking its version. Run:
pip --version
This will display the current version of pip installed on your system.
Additional Notes
- If you encounter permission errors while upgrading pip, you may need to run the Command Prompt as an administrator. To do this, search for
cmdin the Start menu, right-click on Command Prompt, and select Run as administrator. - If you are using a virtual environment, make sure the virtual environment is activated before running the upgrade command.
By following these steps, you should have the latest version of pip installed on your Windows system!
Upgrading pip in the Command Prompt on Windows is a simple process that ensures you have the latest features and security updates. By using the command python -m pip install --upgrade pip, you can easily keep your pip installation up-to-date. Remember to verify the upgrade by checking the pip version afterward. If you encounter any issues, running the Command Prompt as an administrator or ensuring that your virtual environment is activated can help resolve them.