python pip 使用
Posted jhxxb
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python pip 使用相关的知识,希望对你有一定的参考价值。
一、修改 pip 源
Windows
在用户目录下新建 pip\pip.ini 文件,如:C:\Users\Administrator\pip\pip.ini
[global] index-url = https://mirrors.aliyun.com/pypi/simple/
Linux
# 临时使用镜像站来升级 pip pip install -i https://pypi.tuna.tsinghua.edu.cn/simple pip -U # 命令方式修改源 pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple # 修改文件方式修改源 vim ~/.config/pip/pip.conf [global] index-url = https://pypi.tuna.tsinghua.edu.cn/simple
一些 pip 国内镜像
阿里云:https://mirrors.aliyun.com/pypi/simple/ 中国科技大学:https://pypi.mirrors.ustc.edu.cn/simple/ 豆瓣(douban):https://pypi.douban.com/simple/ 清华大学:https://pypi.tuna.tsinghua.edu.cn/simple/ 中国科学技术大学:https://pypi.mirrors.ustc.edu.cn/simple/
二、常用 pip 命令
# 安装 pip install numpy # 卸载 pip uninstall numpy # 安装指定版本 pip install numpy==1.16.0 # 更新 pip install -U numpy
https://mirrors.tuna.tsinghua.edu.cn/help/pypi/
以上是关于python pip 使用的主要内容,如果未能解决你的问题,请参考以下文章