Thursday, July 8, 2021

Published July 08, 2021 by Anonymous with 0 comment

How to Install PIP on Windows

 PIP which is an acronym of “PIP Install Package” or as “Preferred Installer Program.” , manages software packages encoded within Python.

Later versions of Python automatically come with PIP as a bundle. Older Python versions on Windows may require a manual installation of PIP. This guide will explain the step-by-step procedures in PIP installation and updating or downgrading versions of PIP.

Read: How to speed up your Windows computer

PRECONDITIONS

1. Determine any currently installed PIP software

First, check if PIP is currently installed before any installations of PIP on Windows.

Open Command Prompt, then input the succeeding code:

pip help

Any response from PIP will confirm that it is currently installed on Windows. If PIP is not installed, an error indicating no possible traces of the program will appear.

Installing Python 2.7.9+ and Python 3.4+ will simultaneously install PIP along with it.

Installation of PIP includes the pyvenv and virtualenv virtual environments.

2. Confirm Installation of Python

Current Python installation must be active as required by PIP through a Python Utility. Later versions of Python and Python-enabled virtual environments do not require any rei-nstallations of PIP since it comes installed with the software.

To confirm any installations of Python:

Input the following command on Command Prompt:

python

Non-recognition of the command will then require you first to install Python to install PIP.

Recognition of the command will be confirmed through a response from Python indicating an option of commands and its current version number.

Read: How to run Python on Ubuntu 20.04

PIP INSTALLATION ON WINDOWS

1. Download get-pip.py To Install PIP

In order to install PIP, first download the get pip py file from: get-pip.py on pypa.io

Save the downloaded file to any desired Windows folder.

2. Run the “Command-Line for Windows.”

PIP command is included in the installation of PIP since it is considered a “command-line program.”

Open Command Prompt by pressing Windows Key + R, then type “cmd” and hit enter.

Or you can input “command prompt” in the search box and press enter.

The command prompt window will appear through any of these two methods, but the command prompt can require you to open it “As Administrator,” and you should allow this. You will be required to open the program “As Administrator” if any permission to execute errors pops up. Right-click on Command Prompt, then select the “Run as Admin” option to execute the program “As Administrator.”

Read: 6 Reasons why you Should Learn Python

3. PIP installation

Make sure that Command Prompt is running and navigate through the cd command to locate the destination folder of the get-pip.py file, which is the file you have just recently downloaded.

Input the PIP install command below:

python get-pip.py

Any errors indicating that the file can’t be found, make sure you have selected the correct path to the downloaded file’s destination folder.

Using the dir command, you can see the entire contents of your current directory and can be accessed through the command below:

dir

4. PIP Version Validation

Input the command below to confirm the present PIP version.

pip –version

5. Validate Installation

After installation of PIP, confirm if the installation process was completed correctly by inputting the following command:

pip help

The complete installation will execute the program .

Encountering any errors means there was an issue during installation, and you will need to redo the installation procedure.

6. Setting Up

If PIP is running on Windows, the file setup should be %HOME%pippip.ini.

Each user also has a setup file, which can be found at %APPDATA%pippip.ini.

The option of composing a custom destination path for the setup file is also available through the environment variable of PIP_CONFIG_FILE.

Setting PIP as Environment Variables on Windows

The “not on the PATH” issue is among the most encountered errors with PIP and generally indicates that the tool you are attempting to execute from your directory cannot be located by Python. Usually, you will be required to locate the correct directory path with which the tool is saved in. After completing this, you will be able to open PIP by launching it through the command.

If you prefer launching pip (or any tool) regardless of location, you can set its installation path directory as part of PATH environment variable through the succeeding steps:

  1. In “Control Panel,” locate System and Security, then click on System
  2. Select the “Advanced System Settings” option.
  3. Select “Environment Variables.”
  4. Below “System Variables,” rapidly click twice on the variable PATH option.
  5. Select New, and set the installation path directory of PIP, then click “OK.”

Upgrade PIP

Every so often, PIP will continue to roll out the latest updates, which will optimize the program’s performance or just be mandatory upgrades for safety measures.

To update the PIP version on Windows, open command prompt, then input the succeeding command:

python -m pip install –upgrade pip

This process of upgrading uninstalls the currently outdated PIP version then reinstalls PIP with its latest available version.

Downgrading PIP

Rolling back updates to previous versions may be useful if you encounter any performance issues with the later versions of PIP.

Regressing PIP to an older version will require you to identify which version you want to downgrade to input the succeeding command then:

python -m pip install pip==18.1

Afterward, your desired PIP version should be indicated.

Conclusion

Seeing that you have followed the steps accordingly and achieved the desired outcome, you have now successfully installed PIP on Windows.

You are now able to open PIP and administer your Python combinations.

You can even update or downgrade to any version with PIP that you see fit.


If you like the content, we would appreciate your support by buying us a coffee. Thank you so much for your visit and support.

Adblock test (Why?)


Original page link

Best Cool Tech Gadgets

Top favorite technology gadgets
      edit

0 comments:

Post a Comment