当前位置:网站首页>python 下载模块加速实现记录
python 下载模块加速实现记录
2020-11-06 01:22:00 【IT界的小小小学生】
加速pip下载:更换pip源
pip下载python包时默认使用国外源,下载比较慢,可以考虑替换为国内源。
临时修改源
清华源
清华大学的pip源,它是官网pypi的镜像,每隔5分钟同步一次,推荐使用。
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple
–trusted-host pypi.tuna.tsinghua.edu.cn packagename
豆瓣源
pip install -i http://pypi.douban.com/simple
–trusted-host pypi.douban.com packagename
阿里源
pip install -i http://mirrors.aliyun.com/pypi/simple
–trusted-host mirrors.aliyun.com/pypi/simple/ packagename
永久修改
修改~/.pip/pip.conf文件,如果没有就创建一个,写入如下内容(以清华源为例):
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
[install]
trusted-host = pypi.tuna.tsinghua.edu.cn
下载whl文件去安装
https://www.lfd.uci.edu/~gohlke/pythonlibs/#lxmlpip
install cvxpy-xxx.whl
版权声明
本文为[IT界的小小小学生]所创,转载请带上原文链接,感谢
https://vip01.blog.csdn.net/article/details/101426554
边栏推荐
猜你喜欢
随机推荐
TRON智能钱包PHP开发包【零TRX归集】
大数据应用的重要性体现在方方面面
【Flutter 實戰】pubspec.yaml 配置檔案詳解
Real time data synchronization scheme based on Flink SQL CDC
Sort the array in ascending order according to the frequency
Leetcode's ransom letter
10 easy to use automated testing tools
X Window System介紹
Asp.Net Core學習筆記:入門篇
Dapr實現分散式有狀態服務的細節
条码生成软件如何隐藏部分条码文字
熬夜总结了报表自动化、数据可视化和挖掘的要点,和你想的不一样
Elasticsearch database | elasticsearch-7.5.0 application construction
WeihanLi.Npoi 1.11.0/1.12.0 Release Notes
向北京集结!OpenI/O 2020启智开发者大会进入倒计时
How do the general bottom buried points do?
After brushing leetcode's linked list topic, I found a secret!
python 保存list数据
3分钟读懂Wi-Fi 6于Wi-Fi 5的优势
怎么理解Python迭代器与生成器?