whtielez
whtielez

Reputation: 1

Python PIP freezing and not working in Windows

I am having trouble with PIP right now. When I installed python, I check the box to install pip together. Python itself works fine, but PIP does not work. Whenever I type pip in command line on Windows (no matter 8.1 or 10, I just fallback and re-upgrade my laptop), it will do nothing but keep freezing at this point and even ctrl-C is not working. What should I do to solve this problem? I've tired to resintall python on 2.7.9, 2.7.10, 3.4.3, 3.5, they all have same problem, it seems not the python but some dll is missing(I guess). What it looks like when freezing

What it looks like when calling with -v and install package('Django')

Upvotes: 0

Views: 1959

Answers (2)

Pavan Nath
Pavan Nath

Reputation: 1494

Check out the log file created by the pip whenever you invoke the pip command. The log file is situated generally at

C:\Users\user_name\pip

The notepad file will be created and you can verify what is missing

Upvotes: 0

Maratka
Maratka

Reputation: 21

Try python -m pip install Django. I had the same problem with pip today and it worked for me.

Upvotes: 2

Related Questions