当前位置:网站首页>Python download module to accelerate the implementation of recording
Python download module to accelerate the implementation of recording
2020-11-06 01:22:00 【Elementary school students in IT field】
Speed up pip download : Replace pip Source
pip download python Foreign source is used by default , Download is slow , Consider replacing it with a domestic source .
Temporary modification source
Tsinghua source
Tsinghua University pip Source , It's the official website pypi Mirror image , every other 5 Sync once a minute , Recommended .
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple
–trusted-host pypi.tuna.tsinghua.edu.cn packagename
Douban source
pip install -i http://pypi.douban.com/simple
–trusted-host pypi.douban.com packagename
Aliyuan
pip install -i http://mirrors.aliyun.com/pypi/simple
–trusted-host mirrors.aliyun.com/pypi/simple/ packagename
Permanent modification
modify ~/.pip/pip.conf file , If not, create a , Write the following ( Take Qinghuayuan for example ):
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
[install]
trusted-host = pypi.tuna.tsinghua.edu.cn
download whl File to install
https://www.lfd.uci.edu/~gohlke/pythonlibs/#lxmlpip
install cvxpy-xxx.whl
版权声明
本文为[Elementary school students in IT field]所创,转载请带上原文链接,感谢
边栏推荐
- (1) ASP.NET Introduction to core3.1 Ocelot
- Working principle of gradient descent algorithm in machine learning
- It's so embarrassing, fans broke ten thousand, used for a year!
- 每个前端工程师都应该懂的前端性能优化总结:
- 如何玩转sortablejs-vuedraggable实现表单嵌套拖拽功能
- ES6 essence:
- 一篇文章带你了解CSS 分页实例
- 华为云“四个可靠”的方法论
- 一篇文章带你了解CSS对齐方式
- Microservices: how to solve the problem of link tracing
猜你喜欢
随机推荐
OPTIMIZER_ Trace details
熬夜总结了报表自动化、数据可视化和挖掘的要点,和你想的不一样
How long does it take you to work out an object-oriented programming interview question from Ali school?
Aprelu: cross border application, adaptive relu | IEEE tie 2020 for machine fault detection
加速「全民直播」洪流,如何攻克延时、卡顿、高并发难题?
Summary of common algorithms of linked list
6.1.1 handlermapping mapping processor (1) (in-depth analysis of SSM and project practice)
合约交易系统开发|智能合约交易平台搭建
Network security engineer Demo: the original * * is to get your computer administrator rights! 【***】
Installing the consult cluster
What is the difference between data scientists and machine learning engineers? - kdnuggets
数字城市响应相关国家政策大力发展数字孪生平台的建设
Microservices: how to solve the problem of link tracing
Working principle of gradient descent algorithm in machine learning
50 + open source projects are officially assembled, and millions of developers are voting
嘗試從零開始構建我的商城 (二) :使用JWT保護我們的資訊保安,完善Swagger配置
一篇文章带你了解CSS对齐方式
助力金融科技创新发展,ATFX走在行业最前列
Thoughts on interview of Ali CCO project team
PHP应用对接Justswap专用开发包【JustSwap.PHP】


