Skip to content

Latest commit

 

History

History
60 lines (31 loc) · 1.36 KB

File metadata and controls

60 lines (31 loc) · 1.36 KB

第16节 pip

❤️💕💕python是一种动态的解释形语言,由于python的普遍性,学会python能更快的解决问题,以及学习其他的知识。Myblog:http:https://nsddd.top


[TOC]

什么是pip

PIP 是 Python 包或模块的包管理器

In [3]: pip --version
pip 21.2.4 from C:\Users\smile\AppData\Local\Programs\Python\Python310\lib\site-packages\pip (python 3.10)
Note: you may need to restart the kernel to use updated packages.

下载包

pip install 包名

列出所有软件包

pip list

image-20220919145849926

删除包

pip uninstall 包名

END 链接