Some Python modules can be installed with PIP, which is convenient for the Yum command under Linux, and the module does not need to be manually compiled and installed
Tools/Materials
Method/Step
Pip is dependent on Python, first check if there is no Python installed on the Windows machine, or if it is not added to the environment variable, if there is no need to install or add environment variable
Download and install Python, choose a version that matches your operating system to download, I download the Windows 64-bit 2.7.14, there are many modules do not support Python3, so still choose python2.x in the latest and last version.
Configure Python's environment variables to configure the Python installation path C:\Python27 in path
Install PIP, download Pip's tar package to local and unzip, this tar.gz format is Windows and Linux generic package, under Windows with the Normal decompression tool can be extracted, as follows
Https://pypi.python.org/pypi/pip#downloads
Go to the Extract directory of Pip, execute Python setup.py install, install after installation is complete, finished instructions installation is successful
The prompt to execute the PIP command could not find this command, it is necessary to add the PIP installation path to the environment variable, the path is usually in the scripts directory of the directory where Python resides
- 7
After the environment variable was added successfully, the PIP list was executed successfully, and now the PIP has been successfully installed and can be used to install some Python modules.
How Windows installs PIP