Linked Questions
83 questions linked to/from How do I install a Python package with a .whl file?
31
votes
11
answers
135k
views
How do I install Python libraries in wheel format? [duplicate]
I was looking for a tutorial on how to install Python libraries in the wheel format.
It does not seem straightforward so I'd appreciate a simple step by step tutorial how to install the module ...
25
votes
2
answers
159k
views
Installing Python library from WHL file [duplicate]
Skill level: beginner
I am trying to add a library in python. The extension is wheel.
Can somebody tell stepwise approach in installing wheel file?
0
votes
1
answer
4k
views
How do I install matplotlib whl files to Python on Windows 7? [duplicate]
I want to install Matplotlib into a Python installation. But I can not install it because there aren't any EXE files; rather there are whl files. I don't know the way of installation of whl files.
1
vote
0
answers
124
views
Trying to install pygame for python 3.6, running into difficulties [duplicate]
I'm still really new to the world of programming, so if my question is stupid that's why.
I've installed Python and decided I wanted to play around with Pygame a bit. I managed to find this link: ...
0
votes
0
answers
45
views
Issue installing geopandas package [duplicate]
I understand that GDAL is a prerequisite and have followed other threads to download the wheel file from Laboratory of Fluorescence Dynamics even taking note which file to download based on the python ...
2774
votes
40
answers
3.6m
views
How do I install pip on Windows?
pip is a replacement for easy_install. But should I install pip using easy_install on Windows? Is there a better way?
344
votes
36
answers
1.2m
views
Error "Microsoft Visual C++ 14.0 is required (Unable to find vcvarsall.bat)" [duplicate]
I've installed Python 3.5 and while running
pip install mysql-python
it gives me the following error
error: Microsoft Visual C++ 14.0 is required (Unable to find vcvarsall.bat)
I have added the ...
156
votes
3
answers
119k
views
Difference between 'python setup.py install' and 'pip install'
I have an external package I want to install into my python virtualenv from a tar file.
What is the best way to install the package?
I've discovered 2 ways that can do it:
Extract the tar file, then ...
58
votes
10
answers
70k
views
Cannot install NumPy from a wheel format
I am trying to install NumPy from a wheel (.whl) file. I get the error:
numpy-1.9.1%2Bmkl-cp34-none-win_amd64.whl is not a supported wheel on this platform.
Details:
Windows 8.1 pro x64, elevated ...
50
votes
10
answers
89k
views
Error when installing mpi4py
I'm trying to install mpi4py using pip install mpi4py, but I'm getting the following error:
error: Cannot find 'mpi.h' header. Check your configuration!!!
Earlier in the same error report I have,
...
79
votes
6
answers
225k
views
How do I install PIL/Pillow for Python 3.6?
I have a script that requires PIL to run. Other than downgrading my Python, I couldn't find anyway to install PIL on my Python 3.6
Here are my attempts:
pip install pil
Collecting pil
Could not ...
18
votes
5
answers
42k
views
Trouble installing SciPy on windows
I have Python 2.7 and NumPy installed. I have downloaded pre-built binaries for SciPy, but the install script fails with this error:
Blas (http://www.netlib.org/blas/) libraries not found.
...
7
votes
4
answers
20k
views
GMPY2 Not installing, mpir.h not found
I am trying to install gmpy2 on my Anaconda Python 3.5 distribution using pip. I was able to install other modules such as primefac perfectly. When I try to install gmpy2 this is what I get:
(C:\...
20
votes
2
answers
33k
views
Where does pip download .whl files?
I'd like to install a certain python package with pip but because of the proxy I am sitting behind pip cannot connect to the internet.
So my question is: Where does pip look for .whl files in order ...
16
votes
2
answers
37k
views
Provide a path to gdal-config using a GDAL_CONFIG environment variable error while attempting to install Fiona
This is the error I receive:
A GDAL API version must be specified. Provide a path to gdal-config
using a GDAL_CONFIG environment variable or use a GDAL_VERSION
environment variable.
after ...