1. Online Installation
Run the PIP install package_name command
Note: Package_name refers to the module name that needs to be installed
2. Offline installation
2.1 Download the installation package
Suffix format:. WHL and. GZ Two types
Download Link: https://www.lfd.uci.edu/~gohlke/pythonlibs/or https://pypi.org/
WHL Sample Description:
CPXX:XX represents the Python version, i.e. 2.7, 3.4, etc.
win32:32 bit Python software
win_amd64:64 bit Python software
Note: View your Python software (version number, 32-bit/64-bit), click to download
GZ Sample Description:
2.2 Installation
WHL Installation Tutorial:
2.2.1 Using the CD command at the command line to jump to the directory where the file is located
2.2.2 Running the PIP install file_full_name command
Note: File_full_name refers to the name of the file downloaded above, for example AD3?2.1?CP36?CP36M?WIN_AMD64.WHL
For example, the file is in the C:\Package\python directory
GZ Installation Tutorial:
2.2.3 to unzip the GZ file
2.2.4 using the CD command at the command line to unzip the directory
2.2.5 running the python setup.py install command
For example, the extracted file directory is scikit-surprise-1.0.6, into the Extract directory
Several common module installation methods for Python