pip国内源配置】的更多相关文章

pip 国内源 配置 2017年12月09日 16:05:20 阅读数:183 最近使用 pip 安装包,动辄十几 k 甚至几 k 的下载速度,确实让人安装的时候心情十分不好.所以还是要给 pip 换一个国内的源.可以显著的提升安装速度.有更多的时间来研究算法. 下面,列一下收集到的国内源: 阿里云  http://mirrors.aliyun.com/pypi/simple/ 中国科技大学  https://pypi.mirrors.ustc.edu.cn/simple/ 豆瓣 (douban…
Python 的一大优点就是丰富的类库,所以我们经常会用 pip 来安装各种库,所以对于Python开发用户来讲,PIP安装软件包是家常便饭.但国外的源下载速度实在太慢,浪费时间.而且经常出现下载后安装出错问题.所以把PIP替换为国内源,可以大幅提升下载速度,还可以提高安装成功率. 一.将pip修改为pip国内源即可 pip和很多的包管理工具一样,是从国外源下载的.因此速度会比较慢,甚至会安装不了 清华:​https://pypi.tuna.tsinghua.edu.cn/simple​ 阿里云…
一些常用的国内源 清华大学:https://pypi.tuna.tsinghua.edu.cn/simple 阿里云:https://mirrors.aliyun.com/pypi/simple 中国科学技术大学 https://pypi.mirrors.ustc.edu.cn/simple 豆瓣:http://pypi.douban.com/simple 永久修改pip 国内源 在用户根目录(~,而非系统根目录 / )下添加配置~/.pip/pip.conf目录添加可信源,如果目录文件不存在,…
一.多会话工具screen.tmux 两个都是多窗口工具.1.使用后wim出现配色问题:http://ibartman.com/2014/04/16/vim%20%E9%85%8D%E8%89%B2/设置两个即可:(.bashrc对应具体shell),重启计算机(或者source .bashrc).bashrc:export TERM="xterm-256color".vimrc:set term=screen-256color 2.screen闪屏http://easwy.com/b…
CentOS 7 国内源配置 1. 备份自带源 # 首先要确认你有 wget 命令, 并且连着网 # cd /etc/yum.repos.d/ # mkdir repo # mv *.repo repo 2. 下载国内源文件 # cd /etc/yum.repos.d/ # 1). 下载 CentOS7 源文件地址 # wget http://mirrors.163.com/.help/CentOS7-Base-163.repo # 2). 因为网易没有 epel 源 所以要从阿里下载 # wg…
ubuntu apt 使用国内源 设置>软件和更新>下载自 选择mirrors.aliyun.com/ubuntu 更新源sudo apt-get update 安装系统包:sudo apt-get -y install python3-dev libmysqlclient-dev 安装pip3: sudo apt-get -y install python3-pip pip使用国内源 创建 ~/.pip/pip.conf 编辑 [global] trusted-host=mirrors.al…
配置国内源 linux配置 修改 ~/.pip/pip.conf 文件,如下,添加了源并修改了默认超时时间 [global] timeout = 3000 index-url = http://mirrors.aliyun.com/pypi/simple [install] trusted-host=mirrors.aliyun.com windows配置 在C:\Users\用户名\pip下新建pip.ini文件 [global] index-url = http://mirrors.aliy…
一.Kali系统更新源 使用官网的虚拟化镜像安装,默认为英文界面,更新源也是官方源.因为官方服务器在国外,速度不是很理想,现在就来改国内源并且更新系统. 1.使用编辑器打开系统源文本(在终端内操作,先备份原来的文件是个好习惯) leafpad /etc/apt/sources.list 2.获取国内源地址,清华源,地址如下: deb http://mirrors.tuna.tsinghua.edu.cn/kali kali-rolling main non-free contrib deb-sr…
配置前请先参考: https://wiki.debian.org/SourcesList https://www.debian.org/mirror/list https://mirrors.tuna.tsinghua.edu.cn/help/debian/ http://mirrors.ustc.edu.cn/help/debian.html 官方镜像地址: ftp.cn.debian.org #中科大 ftp2.cn.debian.org #清华 nano /etc/apt/sources.…
Ubuntu apt-get和pip源更换 更新数据源为国内,是为了加速安装包的增加速度. 更换apt-get数据源 输入:sudo -s切换为root超级管理员: 执行命令:vim /etc/apt/sources.list: 使用命令:%d 清空所有内容: 清华数据源地址:https://mirrors.tuna.tsinghua.edu.cn/help/ubuntu/ 选择相应的版本复制内容,点击"i"键进入编辑文本模式,粘贴内容到vim编辑窗体,点击"ESC"…
pip install django -i http://mirrors.aliyun.com/pypi/simple --trusted-host mirrors.aliyun.com pip install djangorestframework -i http://mirrors.aliyun.com/pypi/simple --trusted-host mirrors.aliyun.com pip install markdown -i http://mirrors.aliyun.com…
pip国内的这个源最快   清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/ 修改源方法: 临时使用: 可以在使用pip的时候在后面加上-i参数,指定pip源 eg: pip install scrapy -i https://pypi.tuna.tsinghua.edu.cn/simple 永久修改: Linux: 修改 /root/.pip/pip.conf (没有就创建一个), 内容如下: [global] index-url = https:/…
pip install -i https://pypi.douban.com/simple pyqrcode…
原文地址:https://segmentfault.com/a/1190000018147680 新年开工后要开始新的项目,但是发现一些项目的依赖没有在阿里仓库Central或Public源之中,项目依赖还是要在外网中下载,很慢.很烦······所以一番查找后,替换为阿里官方仓库服务站点:https://maven.aliyun.com/mvn/... 具体操作 打开 ${maven_home}/conf/settings.xml 在<mirrors>上面配置 <mirror> &…
源 地址 阿里云 http://mirrors.aliyun.com/pypi/simple/ 豆瓣 http://pypi.douban.com/simple/ 清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/ 中国科学技术大学 http://pypi.mirrors.ustc.edu.cn/simple/ 华中科技大学 http://pypi.hustunique.com/ 比如使用豆瓣源安装requests库: pip install reque…
临时使用方法 pip install -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com celery END…
一.官网下载压缩包并解压. 官网:https://pypi.org/project/pip/#files 文件:选择.tar.gz版本 image 解压后,进入解压文件目录,在当前路径下打开cmd窗口 image 输入:python setup.py install 安装完成. 二.windows环境下永久修改pip镜像源的方法 (1)在windows文件管理器中,输入 %APPDATA% (2)会定位到一个新的目录下,在该目录下新建pip文件夹,然后到pip文件夹里面去新建个pip.ini文件…
在目录 C:\Users\Administrator下新建pip目录 C:\Users\Administrator\pip 添加 pip.ini 文件 pip.ini内容设置为 [global] index-url = https://pypi.tuna.tsinghua.edu.cn/simple…
清华: https://pypi.tuna.tsinghua.edu.cn/simple 豆瓣: http://pypi.douban.com/simple/ 阿里: http://mirrors.aliyun.com/pypi/simple/ gem: gem sources -l gem sources --add https://gems.ruby-china.org/ --remove https://rubygems.org/ 更新缓存 gem sources -u…
ubuntu上: -i http://pypi.douban.com/simple --trusted-host pypi.douban.com # pip install web.py -i http://pypi.douban.com/simple --trusted-host pypi.douban.com 一般不会出现问题. 由于anaconda我认为在ubuntu上没有必要装,所以我就没有换源方法了 windows系统上: pip国内源 在这个路径创建pip.ini文件 [global…
pip 提供了对 Python 包的查找.下载.安装.卸载的功能,是非常方便的 Python 包管理工具.但是,令人苦恼的是 pip 在国内的下载速度非常慢,速度常常只有每秒几十 K,甚至才几 K,小点的包还好,还能等,更多的时候,则是完全要把人逼疯的节奏. 这里,咪博士就教大家,如何在 Windows 下,为 pip 设置国内源.设置完成之后,速度可以达到每秒好几 M,快到飞起来.这里我们选用阿里云的国内镜像.毕竟有大金主支持,稳定性有保障. 一.新建 pip 配置文件夹 先在 windows…
众所周知,Python使用pip方法安装第三方包时,需要从 https://pypi.org/ 资源库中下载,但是会面临下载速度慢,甚至无法下载的尴尬,这时,你就需要知道配置一个国内源有多么重要了,通过一番摸索和尝试,总结了一些经验,分享给大家: 首先贴一下下载速度的对比图: 图1:国外官网下载 图2:国内镜像下载 给大家推荐几个值得拥有的国内镜像站  [ 个人推荐清华大学pypi镜像站(https://mirrors.tuna.tsinghua.edu.cn/help/pypi/),每五分钟同…
最近使用 pip 安装包,动辄十几 k 甚至几 k 的下载速度,确实让人安装的时候心情十分不好.所以还是要给 pip 换一个国内的源.可以显著的提升安装速度.有更多的时间来研究算法. 下面,列一下收集到的国内源: 阿里云 http://mirrors.aliyun.com/pypi/simple/ 中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/ 豆瓣 (douban) http://pypi.douban.com/simple/ 清华大学 http…
国内源: 阿里云 http://mirrors.aliyun.com/pypi/simple/中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/豆瓣(douban) http://pypi.douban.com/simple/ 清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/ Linux环境: 可以直接使用镜像源,加 -i 指定地址: sudo pip install -i http://pypi.douba…
Anaconda安装第三方库 PIP使用命令 Anaconda命令 pip和conda 添加国内源 1:PIP相关命令 卸载 pip uninstall XXX 1.升级pip python -m pip install --upgrade pip 2.升级NumPy python -m pip install --upgrade numpy(此升级不稳定 建议下载最新版执行手动安装) 3: 带配置的升级 pip install -i https://pypi.tuna.tsinghua.edu…
需要将pip源设置为国内源,阿里源.豆瓣源.网易源等 - windows (1)打开文件资源管理器(文件夹地址栏中) (2)地址栏上面输入 %appdata% (3)在这里面新建一个文件夹 pip (4)在pip文件夹里面新建一个文件叫做 pip.ini ,内容写如下即可 [global] timeout = 6000 index-url = https://mirrors.aliyun.com/pypi/simple/ trusted-host = mirrors.aliyun.com - l…
对于Python开发用户来讲,PIP安装软件包是家常便饭.但国外的源下载速度实在太慢,浪费时间.而且经常出现下载后安装出错问题.所以把PIP安装源替换成国内镜像,可以大幅提升下载速度,还可以提高安装成功率. 国内源: 新版ubuntu要求使用https源,要注意. 清华:https://pypi.tuna.tsinghua.edu.cn/simple 阿里云:http://mirrors.aliyun.com/pypi/simple/ 中国科技大学 https://pypi.mirrors.us…
pip/pip3更换国内源 用途:pip更换为国内源,可以大大的提高安装成功率和速度. Windows更换pip/pip3源 打开目录:%appdata% 新增pip文件夹,新建pip.ini文件 给pip.ini添加内容 [global] timeout = 6000 index-url = https://pypi.tuna.tsinghua.edu.cn/simple trusted-host = pypi.tuna.tsinghua.edu.cn 这个更换的是清华的源,清华的源5分钟同步…
python官方镜像是基于debian的.国内使用时定制一下,加快下载速度. 1 debian本身使用国内源 dockfile中: #国内debian源 ADD sources.list /etc/apt/ sources.list在dockerfile同目录下: deb http://mirrors.ustc.edu.cn/debian/ stretch main non-free contribdeb http://mirrors.ustc.edu.cn/debian/ stretch-up…
网上收集来的pip源地址: 阿里云 http://mirrors.aliyun.com/pypi/simple/中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/豆瓣(douban) http://pypi.douban.com/simple/ 清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/中国科学技术大学 http://pypi.mirrors.ustc.edu.cn/simple/ setuptools…