Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Pip returns nothing in Windows command line

Pip command returns nothing. I enter $ pip [command] and all I get back is a new line without any instructions running.

Input:

C:/Python34/Scripts> pip

Result:

C:/Python34/Scripts>

I have tried $ pip --verbose - same result. Nothing works. I have correctly placed Python34 and Scripts folder in the Path.

%CommonProgramFiles%\Microsoft Shared\Windows Live;%SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;%SYSTEMROOT%\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\ATI Technologies\ATI.ACE\Core-Static;C:\Program Files (x86)\Common Files\Roxio Shared\DLLShared\;C:\Program Files (x86)\Common Files\Roxio Shared\DLLShared\;C:\Program Files (x86)\Common Files\Roxio Shared\12.0\DLLShared\;C:\HashiCorp\Vagrant\bin;C:\Python34;C:\Python34\Scripts

Python runs fine in command line.

  • Windows 7 SP1 64-bit
  • Python 3.4
  • Running Command Prompt as Administrator

Please help :(

like image 475
Antonio Nogueras Avatar asked Dec 24 '22 16:12

Antonio Nogueras


1 Answers

Hey for anyone who is having trouble getting the code that worked for Antonio to run in Python 3.5 run the following python -m pip install some_package

I had the same problem as antonio so changing the code to the above worked for me.

like image 181
Gilder Avatar answered Dec 27 '22 06:12

Gilder