How can you fix the issue?MiniToolwill show you some methods in this post.
PIP Is Not Recognized
PIP, Pip Installs Package, is a standard package management system.
It is used to install and handle software packages written in Python.
![]()
By default, most versions of Python have PIP installed.
To fix this issue, you’ve got the option to follow some methods below.
Just do this thing through the following steps:
Step 1:Launch Command Prompt as administrator.

Step 2: Typeecho %PATH%and pressEnter.
you’re able to see a list of all the locations added to the PATH variable.
Step 3: have a go at search for something similar toC:\Python37\Scripts.
If you find one, this means the installation path has already been added to the PATH variable.
If not, you gotta add it to the variable.
Windows GUI
Step 1: PressWin + X, clickRun, typesysdm.cpl,and clickOK.
The Run Command provides great convenience for you to access some specific programs.
This post shows 6 ways to open Run box.
Step 2: Under theAdvancedtab, clickEnvironment Variables.
Step 3: Go to System variables, clickPath > Edit.
Step 4: ClickNewand bang out inC:\Python34\Scripts.
Step 1: Run Command Prompt.
Step 2: Typesetx PATH %PATH%;C:\Python37\Scriptsand pressEnter.
ReplacePython37with your Python version.
Use Python Executable Installer
Step 1: Runpython versionin the CMD window to check the Python version installed.
Step 2: Go to Python.org to download the same version of the executable installer.
Step 3: spin up the setup and chooseModify.
Step 4: check that the option of pip is selected.
Step 5: In theAdvanced Optionswindow, chooseAdd Python to environment variablesand clickInstall.
Final Words
Have you got PIP is not a recognized command?