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 :(
py -3.4 -m pip install some_package
without any directory added toPATH
. As to your pip.exe, something is clearly wrong but without a debugger such as windbg or cdb you'll be hard pressed to diagnose the problem. - Eryk Sun