How to use pip

1. Install third-party modules

pip install 模块名

2. Update a module

pip install -u 模块名

3. Update a module to the specified version

pip install -u 模块名=版本号

4. Install a certain version of the module
pip install 模块名==b版本号

Guess you like

Origin blog.csdn.net/Miha_Singh/article/details/88080279