【python】pip的配置

参考链接:https://www.runoob.com/w3cnote/pip-cn-mirror.html

 

pip指定镜像:

pip install pandas -i https://pypi.douban.com/simple

pip install pandas --trusted-host 192.168.1.224 -i http://192.168.1.224:30080

 

几个常用镜像:

豆瓣镜像 https://pypi.douban.com/simple

阿里镜像 https://mirrors.aliyun.com/pypi/simple

 

设置镜像

Linux/Mac os 环境中,配置文件位置在 ~/.pip/pip.conf(如果不存在创建该目录和文件)

[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
[install]
trusted-host = https://pypi.tuna.tsinghua.edu.cn

查看当前配置

$ pip3 config list   
global.index-url='https://pypi.tuna.tsinghua.edu.cn/simple'
install.trusted-host='https://pypi.tuna.tsinghua.edu.cn'

可以看到已经成功修改了镜像。

posted on 2022-03-16 17:52  yesuuu  阅读(530)  评论(0编辑  收藏  举报

导航