Installing from Source
Explore how to install Python packages directly from source files by using setup.py in a terminal. Understand managing installations for different Python versions and the requirements for compiling packages with C extensions on Windows and Linux.
We'll cover the following...
We'll cover the following...
Installing from source is a great skill to have. There are easier ways, which we’ll be getting to later on in the article. However, there are some packages that you have to install from source. For example, to use easy_install, you will need to first install setuptools. To do that, you will want to download the ...