当前位置: 首页 > news >正文

记录 | pip加速配置

以下方法不仅适用于linux,也适用于mac

  • 临时加速配置:
pip install -i https://pypi.douban.com/simple --trusted-host pypi.douban.com matplotlib==3.4.0

其中可选源有:

https://pypi.douban.com/simple
http://mirrors.aliyun.com/pypi/simple
https://pypi.tuna.tsinghua.edu.cn/simple

  • 永远配置:
# 创建 pip.conf
cd ~
mkdir .pip
cd .pip
vim pip.conf

pip.conf 中加入源:

[global]
timeout = 6000# 阿里源
index-url = http://mirrors.aliyun.com/pypi/simple/
trusted-host = mirrors.aliyun.com# 豆瓣源
# index-url = http://pypi.douban.com/simple/
# trusted-host = pypi.douban.com# 清华源
# index-url = https://mirrors.tuna.tsinghua.edu.cn/pypi/simple
# trusted-host = irrors.tuna.tsinghua.edu.cn# 科大源
# index-url=http://pypi.mirrors.ustc.edu.cn/simple/
# trusted-host =pypi.mirrors.ustc.edu.cn
http://www.lryc.cn/news/250060.html

相关文章:

  • HarmonyOS开发—Arkts循环渲染(ForEach)深入运用详解【鸿蒙专栏-16】
  • uniapp挽留提示2.0
  • 电源控制系统架构(PCSA)之系统分区电压域
  • [Linux] 正则表达式及grep和awk
  • ssm+java车辆售后维护系统 springboot汽车保养养护管理系统+jsp
  • HNU练习七 字符串编程题7. 机器人游戏
  • 【Linux】bash 终端指令
  • 基于SpringBoot高校心理教育辅导设计与实现
  • 关于电脑提示vcruntime140_1.dll无法继续执行代码的解决办法
  • 5. 链表
  • OSI七层模型与TCP/IP四层模型的区别(计算机网络)
  • Other--什么是 CGI,FastCGI、asp、jsp
  • sql关联另一个表,update表的值
  • Python基础:JSON保存结构化数据(详解)
  • 抑郁症日常如何调节?
  • hive两张表实现like模糊匹配关联
  • 【高效开发工具系列】Hutool DateUtil工具类
  • 基于springcloud openfein 使用示例,包含代码和 maven 依赖配置
  • 彰显营销硬实力!皓量科技连续四年入选《中国数字营销生态图》
  • web静态网页设计与制作-基于HTML+CSS+JS实现旅游摄影网站
  • 每日一题:LeetCode-1089. 复写零
  • React Native环境搭建及Hello World
  • VS2017 C++ Qt工程打包软件
  • 【JWT的原理和使用】
  • 对本地存储的有效期的理解
  • 蓝桥杯-02-蓝桥杯Java组考点与14届真题
  • 门户网站二级等保评测问题,服务器漏洞问题解决办法
  • NPDP考前注意事项,这些细节你可要注意!
  • 八个优秀开源内网穿透工具
  • C语言贪吃蛇(有详细注释)