1. 升级
bash
python -m pip install --upgrade pip
2. 列出所有安装包
bash
pip list
3. 查找特定包
bash
pip list | findstr xxx
4. 查看特定包
bash
pip show xxx
5. 安装软件包
bash
pip install pyzmq==24.0.1
6. 卸载软件包
bash
pip uninstall -y pyzmq
7. 查看配置
bash
# 生效的配置(global -> user -> site三层配置叠加(后面的覆盖前面的)后配置)
pip config list
# 仅查看global level的配置
pip config list --global
# 仅查看user level的配置
pip config list --user
# 仅查看site level(虚拟环境)的配置
pip config list --site
8. 配置
以 global level 为例:
bash
# 检查当前配置
pip config --global list
# 重新配置
pip config --global set global.index-url https://mirrors.aliyun.com/pypi/simple/
pip config --global set install.trusted-host mirrors.aliyun.com
# 再次检查当前配置
pip config --global list