Skip to content Skip to sidebar Skip to footer

Pip Wont Install .WHL Files

When I try to install any .WHL from gohike by typing into the cmd C:\Users\owner\Downloads>pip install TA_Lib-0.4.9-cp27-none-win_amd64.WHLI get this print out: `Processing c:\u

Solution 1:

You have an outdated pip which does not understand wheels. Wheels are not even supposed to have a setup.py inside.

Try upgrading pip with pip install --upgrade pip and then running the command again.


Solution 2:

Well, I didn't fix pip but I found out that if I use 7zip to open/unpack the wheel file and drag drop the 2 folders in it into C:\Python27\Lib\site-packages that it works!


Post a Comment for "Pip Wont Install .WHL Files"