34

I currently have Python 3.5 on my Windows machine. I'm trying to install a Python package using the command "pip install" but as soon as I hit enter nothing happens. The action hangs for such a long time and when I try to exit the command line, it freezes. How do I get pip install to work?

Neuron
  • 5,141
  • 5
  • 38
  • 59
Waves
  • 903
  • 1
  • 6
  • 14
  • post contents of %HOME%\.pip\pip.log – Ayush Nov 25 '15 at 20:15
  • 4
    You should try `py -3 -m pip install some_package_you_want` – JBernardo Nov 26 '15 at 01:12
  • 21
    A note to future visitors of this thread: first check the output of `pip -v install `, maybe it doesn't hang, just takes unusually long (but actually does stuff in the background) -- this was the case for me. – martonbognar Apr 11 '18 at 13:28

7 Answers7

62

If you are you using WSL2, indeed it could be related to pip trying to connect to an XServer. If so, clearing the DISPLAY environment variable first before running it may help:

export DISPLAY=
pip install <packagename>

(Or, as a one-liner: DISPLAY= pip install <packagename>)

Ben JW
  • 1,370
  • 1
  • 10
  • 11
22

@JBernardo 's comment worked for me. Thanks!

python -m pip install some_package_you_want
Waves
  • 903
  • 1
  • 6
  • 14
16

If you're using Ubuntu via WSL2 on Windows, it might not work outside a virtualenv. python3 -v -m pip install ... showed me that it was hanging on some OS X keychain import... Hopefully this helps someone else.

James M. Lay
  • 2,270
  • 25
  • 33
4

I had to start 'Xlaunch' display server and it worked, according to a @pscheit it was waiting for a connection to x-server and launching one fixed it

Mellester
  • 922
  • 7
  • 9
1

pip install something was hanging for me when I ssh'd into a linux machine and ran pip install from that shell. Using -v from above answers showed that this step was hanging

import 'keyring.backends.macOS' # <_frozen_importlib_external.SourceFileLoader object at 0x7f3d15404d90>

This popped up a keyring authentication window on the linux machine's desktop, waiting for my password. Typing my password allowed this to progress.

I have no idea why a macOS package was being imported on a linux machine.

dgrogan
  • 2,587
  • 1
  • 17
  • 21
1

I don't know if this is connected to me using apple silicon but suddenly pip install stopped working. No error and nothing happened. Python reinstall didn't help, venv reinitialization didn't help.

The only thing that helped was restarting my machine. Hope it helps someone.

Artur Müller Romanov
  • 4,417
  • 10
  • 73
  • 132
0

Try using pip programmatically like shown below.

import pip

pip.main(['install', 'the_package_you_want_installed'])
Adi
  • 5,560
  • 1
  • 24
  • 37