Reputation: 117
I was trying to install some extra packages I got from here to my Python IDE. I never used this kind of extension .whl
. I also read an article with some possible solutions, but nothing works. I followed this:
I just used the following which was quite simple:
First open a console and use
pip
to installwheel
pip install wheel
then
cd
to where you've downloaded your file likesome-package.whl
and usepip install some-package.whl
But the only thing I got was:
Any idea what I should do?
Upvotes: 0
Views: 843
Reputation: 117
Hah, I just figured out that a number in the name of the wheel file refers to the Python version I'm trying to add a package. So the only thing I had to do was change scikit_image-0.11.3-cp**34**-none-win_amd64.whl
to scikit_image-0.11.3-cp**27**-none-win_amd64.whl
.
Thanks for the help!
See ya!
Upvotes: 0
Reputation: 119
You might have a 64 bit system where you are trying to install a 32 bit package. Use the version that says 64 or amd64 instead.
Upvotes: 1