SoFunction
Updated on 2024-11-07

About python's third-party library downloads and how to change them

Press the Start button and the R key, and type cmd to open the command line.

Look for libraries where clicking is required:/~gohlke/pythonlibs

Download:

The first common way:

Type "pip install library name" on the command line, for example:

pip install pygame

The second hasty way:

Type "pip install -i /simple/library name" on the command line, for example:

pip install -i /simple/jieba

Uninstallation:

Type "pip uninstall library name" on the command line, for example:

pip uninstall pygame

Updated:

Type "pip install -U library name" on the command line, for example:

pip install -U pip

View:

1. Enter "pip list" on the command line to view installed third-party libraries.

2. In the command line, type "pip show library name" to view the details of the installed library.

to this article on python's third-party library to download and change the way the article is introduced to this, more related python third-party library to download and change the content of the search for my previous articles or continue to browse the following related articles I hope that you will support me more in the future!