Error :'pip' is not recognized as an internal or external command

Submitted 3 years, 5 months ago
Ticket #283
Views 218
Language/Framework Python
Priority Medium
Status Closed

I am trying to install Django in my system.

But getting an error meassge ...

C:\Python34> pip install Django
'pip' is not recognized as an internal or external command,
operable program or batch file.

Submitted on Nov 04, 20
add a comment

1 Answer

Verified

Need to add the path of  pip installation to the PATH system variable. By default, pip is installed to C:\Python34\Scripts\pip (pip now comes bundled with new versions of python), so the path "C:\Python34\Scripts" needs to be added to your PATH variable.

To check if it is already in your PATH variable, type echo %PATH% at the CMD prompt

To add the path of the pip installation to the PATH variable, use the Control Panel or the setx command. For example:

setx PATH "%PATH%;C:\Python34\Scripts"

Submitted 3 years, 5 months ago


Latest Blogs