Python切换pip安装源的方法详解


Posted in Python onNovember 18, 2016

一、pip简介

Pip 是安装python包的工具,提供了安装包,列出已经安装的包,升级包以及卸载包的功能。

Pip 是对easy_install的取代,提供了和easy_install相同的查找包的功能,因此可以使用easy_install安装的包也同样可以使用pip进行安装。

二、Linux下的源配置

   检查pip.conf文件是否存在

    >>  cd ~

    >>  mkdir .pip

    >>  ls ~/.pip

Python切换pip安装源的方法详解

Python切换pip安装源的方法详解

三、编辑源

 方案1: 直接编辑pip.conf

   sudo vi ~/.pip/pip.conf

[global] 
index-url = http://mirrors.aliyun.com/pypi/simple/ 
[install] 
trusted-host=mirrors.aliyun.com

方案2:

pip install turtle --trusted-host mirrors.aliyun.com

四、测试对比

   使用默认源的速度:

Downloading alembic-0.8.0.tar.gz (918kB) 
  100% |????????????????????????????????| 921kB 9.9kB/s  
Collecting beautifulsoup4==4.4.1 (from -r requirements.txt (line 2)) 
 Downloading beautifulsoup4-4.4.1-py2-none-any.whl (81kB) 
  100% |????????????????????????????????| 81kB 5.2kB/s  
Collecting cffi==1.2.1 (from -r requirements.txt (line 3)) 
 Downloading cffi-1.2.1.tar.gz (335kB) 
  100% |????????????????????????????????| 337kB 15kB/s  
Collecting chardet==2.3.0 (from -r requirements.txt (line 4)) 
 Downloading chardet-2.3.0.tar.gz (164kB) 
  100% |????????????????????????????????| 174kB 9.4kB/s  
Collecting cryptography==1.0 (from -r requirements.txt (line 5)) 
 Downloading cryptography-1.0.tar.gz (331kB) 
  100% |????????????????????????????????| 337kB 7.1kB/s  
Collecting Django==1.8.4 (from -r requirements.txt (line 6)) 
 Downloading Django-1.8.4-py2.py3-none-any.whl (6.2MB) 
  100% |????????????????????????????????| 6.2MB 16kB/s

  使用国内源的速度:

Collecting alembic==0.8.0 (from -r requirements.txt (line 1)) 
 Downloading http://mirrors.aliyun.com/pypi/packages/9f/e6/d261c6958d418bcb542b8f79fae7fcf14f7f647f891d42c4ed86a499d690/alembic-0.8.0.tar.gz (918kB) 
  100% |????????????????????????????????| 921kB 160kB/s  
Collecting beautifulsoup4==4.4.1 (from -r requirements.txt (line 2)) 
 Downloading http://mirrors.aliyun.com/pypi/packages/33/62/f3e97eaa87fc4de0cb9b8c51d253cf0df621c6de6b25164dcbab203e5ff7/beautifulsoup4-4.4.1-py2-none-any.whl (81kB) 
  100% |????????????????????????????????| 81kB 630kB/s  
Collecting cffi==1.2.1 (from -r requirements.txt (line 3)) 
 Downloading http://mirrors.aliyun.com/pypi/packages/22/86/b4ae6aeec29105cd2faa07ed2f647349fbcad502d880cb504dca84368853/cffi-1.2.1.tar.gz (335kB) 
  100% |????????????????????????????????| 337kB 1.4MB/s  
Collecting chardet==2.3.0 (from -r requirements.txt (line 4)) 
 Downloading http://mirrors.aliyun.com/pypi/packages/7d/87/4e3a3f38b2f5c578ce44f8dc2aa053217de9f0b6d737739b0ddac38ed237/chardet-2.3.0.tar.gz (164kB) 
  100% |????????????????????????????????| 174kB 1.1MB/s  
Collecting cryptography==1.0 (from -r requirements.txt (line 5)) 
 Downloading http://mirrors.aliyun.com/pypi/packages/60/1f/8cf32f1fa61efafea7d4fcdcb5080c073f99ada1d2a436527bc392f2f8ea/cryptography-1.0.tar.gz (331kB) 
  100% |????????????????????????????????| 337kB 1.3MB/s  
Collecting Django==1.8.4 (from -r requirements.txt (line 6))

相对而言,速度提升了不是一点半点,而是飞一样的提升。

5. 总结

好了,以上就是这篇文章的全部内容了,碰到问题就要想办法解决,总有办法可以解决碰到的问题,这就是技术的魅力。希望本文的内容对大家的学习或者工作能带来一定的帮助,如果有疑问大家可以留言交流。

Python 相关文章推荐
python k-近邻算法实例分享
Jun 11 Python
Django发送html邮件的方法
May 26 Python
python+opencv轮廓检测代码解析
Jan 05 Python
Python实现线程状态监测简单示例
Mar 28 Python
Python Web编程之WSGI协议简介
Jul 18 Python
Windows 8.1 64bit下搭建 Scrapy 0.22 环境
Nov 18 Python
使用python opencv对目录下图片进行去重的方法
Jan 12 Python
python中break、continue 、exit() 、pass终止循环的区别详解
Jul 08 Python
python-opencv获取二值图像轮廓及中心点坐标的代码
Aug 27 Python
Python实现Wordcloud生成词云图的示例
Mar 30 Python
详解如何在pyqt中通过OpenCV实现对窗口的透视变换
Sep 20 Python
Python使用DFA算法过滤内容敏感词
Apr 22 Python
Python max内置函数详细介绍
Nov 17 #Python
Python中的日期时间处理详解
Nov 17 #Python
Eclipse和PyDev搭建完美Python开发环境教程(Windows篇)
Nov 16 #Python
Python进阶篇之字典操作总结
Nov 16 #Python
Python极简代码实现杨辉三角示例代码
Nov 15 #Python
Python实现将不规范的英文名字首字母大写
Nov 15 #Python
利用Python开发实现简单的记事本
Nov 15 #Python
You might like
《星际争霸重制版》兵种对比图鉴
2020/03/02 星际争霸
用PHP中的 == 运算符进行字符串比较
2006/11/26 PHP
PHP可逆加密/解密函数分享
2012/09/25 PHP
php实现的双色球算法示例
2017/06/20 PHP
微信公众平台开发教程⑥ 微信开发集成类的使用图文详解
2019/04/10 PHP
laravel框架中视图的基本使用方法分析
2019/11/23 PHP
让whoops帮我们告别ThinkPHP6的异常页面
2020/03/02 PHP
Jquery ajax执行顺序 返回自定义错误信息(实例讲解)
2013/11/06 Javascript
基于jQuery实现响应式圆形图片轮播特效
2015/11/25 Javascript
在nginx上部署vue项目(history模式)的方法
2017/12/28 Javascript
去掉vue 中的代码规范检测两种方法(Eslint验证)
2018/03/21 Javascript
jQuery实现的两种简单弹窗效果示例
2018/04/18 jQuery
浅析vue给不同环境配置不同打包命令
2018/08/17 Javascript
Puppet的一些技巧
2018/09/17 Javascript
ZK中使用JS读取客户端txt文件内容问题
2019/11/07 Javascript
微信小程序商品详情页底部弹出框
2019/11/22 Javascript
python计数排序和基数排序算法实例
2014/04/25 Python
Python爬虫实例爬取网站搞笑段子
2017/11/08 Python
Python文本统计功能之西游记用字统计操作示例
2018/05/07 Python
简单了解python中对象的取反运算符
2019/07/01 Python
Django中使用haystack+whoosh实现搜索功能
2019/10/08 Python
Python pandas RFM模型应用实例详解
2019/11/20 Python
基于Python爬取爱奇艺资源过程解析
2020/03/02 Python
Python通过正则库爬取淘宝商品信息代码实例
2020/03/02 Python
python统计mysql数据量变化并调用接口告警的示例代码
2020/09/21 Python
Peter Millar官网:美国高档生活服饰品牌
2018/07/02 全球购物
护士辞职信模板
2014/01/20 职场文书
爷爷追悼会答谢词
2014/01/24 职场文书
新教师岗前培训方案
2014/06/05 职场文书
通知的写法
2015/04/23 职场文书
2015初中教导处工作总结
2015/07/21 职场文书
2016党员党课心得体会
2016/01/07 职场文书
MySQL 角色(role)功能介绍
2021/04/24 MySQL
Python基础详解之描述符
2021/04/28 Python
浅谈MySQL next-key lock 加锁范围
2021/06/07 MySQL
SpringBoot整合Mybatis Generator自动生成代码
2021/08/23 Java/Android