How do I install Python libraries in wheel format?
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 named "requests" for CPython. I downloaded it from: https://pypi.python.org/pypi/requests and now I have a .whl file. I've got Python 2.7 and 3.3 on Windows, so how do I install it so all the other Python scripts I run can use it? Trilarion You want to install a downloaded wheel (.whl) file on Python under Windows? Install pip on your Python(s) on Windows (on Python 3.4+ it is already included) Upgrade