pip install 清华源加速

经常要通过pip install安装需要的包,但是每当下载的文件比较大时,网速不够快,会导致报错。所以采用清华源来加速

清华大学开源软件镜像站
https://mirrors.tuna.tsinghua.edu.cn/help/pypi/

①临时使用:
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple some-package (some-package代表要下载的包)
注意,simple 不能少, 是 https 而不是 http

②设为默认:
修改 ~/.config/pip/pip.conf (Linux), %APPDATA%\pip\pip.ini (Windows 10) 或 $HOME/Library/Application Support/pip/pip.conf (macOS) (没有就创建一个), 修改 index-url至tuna,例如
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple

pip 和 pip3 并存时,只需修改 ~/.pip/pip.conf。

原文地址:https://www.cnblogs.com/fragrant-breeze/p/12244632.html

时间: 2024-11-09 20:16:05

pip install 清华源加速的相关文章

python 中pip配置清华源

anaconda配置镜像 Mac and Linux conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/ conda config --set show_channel_urls yes Windows windows下,直接在user目录中创建一个pip目录,如:C:\Users\xx\pip,新建文件pip.ini,内容如下 [global] index-url = http

在conda环境中pip使用清华源秒速安装skimage、opencv、tensorflow等python库

pip install scikit-image -i https://pypi.tuna.tsinghua.edu.cn/simple pip install opencv-python -i https://pypi.tuna.tsinghua.edu.cn/simple pip install tensorflow==1.13.1 -i https://pypi.tuna.tsinghua.edu.cn/simple 或者 豆瓣源 pip install xx -i https://pyp

更改pip为豆瓣源加速下载

需求 Python默认pip下载太慢,更改pip为豆瓣源 文件位置 Git Bash Windows $ vi ~/pip/pip.ini Linux $ vi ~/.pip/pip.conf 内容 [global] timeout = 6000 index-url = http://pypi.douban.com/simple/ trusted-host = pypi.douban.com 原文地址:https://www.cnblogs.com/azureology/p/12346194.h

apt-get install 和 pip install的区别

在UBUNTU系统下,使用python进行语言开发时,在必要时需要安装不同的python包进行扩展.那么,通常用到的两种方式:pip install和ubuntu系统独有的apt-get install有什么区别呢?这里略作记录. (主要参考:http://askubuntu.com/questions/431780/apt-get-install-vs-pip-install) pip install的源是pyPI,apt-get 的源是ubuntu仓库. 对于python的包来说,pyPI的

python 安装模块之pip install +模块名的换源写法

1.采用国内源,加速下载模块的速度2.常用pip源(上一篇博客介绍过):– 豆瓣:https://pypi.douban.com/simple– 阿里:https://mirrors.aliyun.com/pypi/simple3.加速安装的命令:– >: pip install -i https://pypi.douban.com/simple 模块名 永久配置下载源Windows系统下“”"1.文件管理器文件路径地址栏敲:%APPDATA% 回车,快速进入 C:\Users\电脑用户\

pip命令使用国内pypi镜像源加速在线安装

参考:http://www.cnblogs.com/yudar/p/4444097.html 用easy_install和pip来安装第三方库很方便 它们的原理其实就是从Python的官方源pypi.python.org/pypi 下载到本地,然后解包安装. 不过因为某些原因,访问官方的pypi不稳定,很慢甚至访问不了. 跟ubuntu的apt和centos的yum有各个镜像源一样,pypi也有. pipy国内镜像目前有: http://pypi.douban.com/  豆瓣 http://p

【Linux】使用pip使用清华镜像源安装三方库

正确打开方式: pip install -i https://pypi.tuna.tsinghua.edu.cn/simple --upgrade pip 解释 pip install -i https://pypi.tuna.tsinghua.edu.cn/simple *libname* libname为我们需要安装的三方库名 原文地址:https://www.cnblogs.com/jums/p/11665530.html

指定pip清华源

临时指定: pip install cefpython3 -i https://pypi.tuna.tsinghua.edu.cn/simple 一直使用:pip的配置文件为%HOME%/pip/pip.ini,当前环境下是C:\Users\Dell\pip\pip.ini,Dell为当前用户名. 默认情况下pip文件夹和pip.ini都未创建,自行创建,pip中添加以下内容. [global]index-url = https://pypi.tuna.tsinghua.edu.cn/simpl

pip install read time-out

Problem ReadTimeoutError: HTTPSConnectionPool(host='pypi.python.org', port=443): Read timed out. 1 Solution $ pip install matplotlib -i https://pypi.douban.com/simple 1 Reference 使用国内镜像源来加速python pypi包的安装