Home >Backend Development >Python Tutorial >What are the methods for downloading and changing python third-party libraries?
Press the "Start (win)" button and the R key, enter cmd, open the command line
Find and click the required library:https://www.lfd.uci.edu/~gohlke/pythonlibs
Enter "in the command line pip install library name", for example:
pip install pygame
Enter "pip install -i https:// in the command line pypi.douban.com/simple/library name", for example:
pip install -i https://pypi.douban.com/simple/jieba
Enter "pip uninstall library name" in the command line, such as:
pip uninstall pygame
Enter "pip install -U library name" in the command line, for example:
pip install -U pip
1. Enter "pip list" on the command line to view the installed third-party libraries
2. Enter "pip show library name" on the command line to view the detailed information of this installed library
The above is the detailed content of What are the methods for downloading and changing python third-party libraries?. For more information, please follow other related articles on the PHP Chinese website!