python使用国内镜像安装模块

国内优秀的镜像源:

1.不修改镜像源配置,安装模块时指定镜像地址,如安装pandas

# 使用 -i 参数指定镜像源 为阿里云源地址
pip install pandas -i https://mirrors.aliyun.com/pypi/simple/
# 如果提示报错不是信任的源则可追加参数来解决 --trusted-host mirrors.aliyun.com

2.修改镜像源配置,一劳永逸

pip config set global.index-url https://mirrors.aliyun.com/pypi/simple/
# 如果使用http链接,则需要指定trusted-host参数
pip config set global.trusted-host mirrors.aliyun.com
pip install pandas

 

python使用国内镜像安装模块

 

上一篇:pageHelp


下一篇:Mybatis分页插件PageHelper返回分页属性大全