指令 | 作用 |
---|---|
pip3 --version | 显示版本和路径 -- python3版本 |
pip --help | 获取帮助 |
pip3 install -U pip | 升级pip版本 |
pip install 库名? ? ? ? ? ? ? | 安装最新版本库 |
pip install 库名==1.0.4 ? ? | 安装指定版本库 |
pip install --upgrade 库名xx | 升级 xx库 版本 |
pip uninstall 库名xx | 卸载 xx库 |
pip list | 显示已安装的包信息 |
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple 库名xxx
pip config set global.index-url https://mirrors.aliyun.com/pypi/simple/
或者:
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple