Pip Install: Can't Open File Pip, Or Parent Module '' Not Loaded
Thanks for reading this in the first place. I'm trying to install Django. So here's what I do in the command line: C:\>python34 pip install Django And here's what I get: C:\Pyt
Solution 1:
Assuming you have pip installed and you want to do this through python as opposed to the standalone pip client, you can also do
python -m pip install SomePackage
Solution 2:
The command pip
is not a Python module. It is an executable. This should work:
C:\> pip install Django
Post a Comment for "Pip Install: Can't Open File Pip, Or Parent Module '' Not Loaded"