How to install local whl with python?
Install the whl file python locally
1. Download the whl offline file locally and put it in the root directory of the c drive (any location is acceptable, just to facilitate installation )
https://pypi.org/
https://www.lfd.uci.edu/~gohlke/pythonlibs/ (It is recommended to use this address to download the whl file, domestic source, Fast. ctrl f to find the file you need)
2. cmd to the directory where the whl file is stored
3. pip to install whl offline File
pip install ****.whl
(****.whl is the file name of the whl we downloaded)
Recommendation: "Python Tutorial"
The above is the detailed content of How to install local whl in python. For more information, please follow other related articles on the PHP Chinese website!