PyPI使用国内源

默认的pip源的速度实在无法忍受,于是便搜集了一些国内的pip源,如下:


阿里云 https://mirrors.aliyun.com/pypi/simple/

中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/

豆瓣(douban) https://pypi.douban.com/simple/

清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/

中国科学技术大学 https://pypi.mirrors.ustc.edu.cn/simple/

使用方法很简单,直接 -i 加 url 即可!如下:

pip install web.py -i http://pypi.douban.com/simple

如果有如下报错:

请使用命令:

pip install web.py -i http://pypi.douban.com/simple --trusted-host pypi.douban.com

如果想配置成默认的源,方法如下:

需要创建或修改配置文件(一般都是创建),

linux的文件在~/.pip/pip.conf,

windows在%HOMEPATH%\pip\pip.ini),

修改内容为:

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

这样在使用pip来安装时,会默认调用该镜像。

临时使用其他源安装软件包的python脚本如下:

#!/usr/bin/python

import os

package = raw_input("Please input the package which you want to install!\n")

command = "pip install %s -i http://pypi.mirrors.ustc.edu.cn/simple --trusted-host pypi.mirrors.ustc.edu.cn" % package

os.system(command)

也可以使用读入文件进行安装。
ok,仅以记录一下,以便于后期查阅!

时间: 2024-10-07 19:00:55

PyPI使用国内源的相关文章

Python Pypi 修改 国内源(以豆瓣源为例)

参考:http://pip.readthedocs.io/en/latest/user_guide/#config-file Pypi在国内豆瓣源的地址如下: http://pypi.douban.com/simple/ 注意后面要有/simple目录.使用特定的镜像源特意用-i参数指定,比如:我们要用豆瓣的Pypi源下载beautifulsoup,可以输入一下命令进行下载:sudo easy_install -i http://pypi.douban.com/simple/ beautiful

python 国内源

pipy国内镜像目前有: http://pypi.douban.com/  豆瓣 http://pypi.hustunique.com/  华中理工大学 http://pypi.sdutlinux.org/  山东理工大学 http://pypi.mirrors.ustc.edu.cn/  中国科学技术大学 手动指定源,可以在pip后面跟-i 来指定源,比如用豆瓣的源来安装web.py框架: pip install web.py -i http://pypi.douban.com/simple

pip和conda国内源更新module

pip国内源 在这个路径创建pip.ini文件 [global] timeout = 6000 index-url = http://pypi.douban.com/simple trusted-host = pypi.douban.com conda国内源 下创建.condarc文件 channels: - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/ - defaults show_channel_urls: true

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/ Linux环境: 可以直接使用镜像源,加 -i 指定地址: 1 sudo pip install -i http://pypi.dou

centos7下python的国内源

操作系统:centos7 python:2.7.x 国内源: 清华:https://pypi.tuna.tsinghua.edu.cn/simple 阿里云:http://mirrors.aliyun.com/pypi/simple/ 中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/ 华中理工大学:http://pypi.hustunique.com/ 山东理工大学:http://pypi.sdutlinux.org/ 豆瓣:http://pypi.

python 使用国内源安装软件

python linux 等 使用国内源安装软件 速度更快 你值得拥有 ! 豆瓣源: https://pypi.douban.com/simple/ 阿里源: http://mirrors.aliyun.com/pypi/simple/ 清华源:https://pypi.tuna.tsinghua.edu.cn/simple/ 华中理工大学源 :http://pypi.hustunique.com/simple/ 山东理工大学 源 :http://pypi.sdutlinux.org/simpl

pip换国内源

pip换国内源 1.国内常用源 ??阿里云 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/sim

pip 设置国内源

最近使用 pip 安装包,动辄十几 k 甚至几 k 的下载速度,确实让人安装的时候心情十分不好.所以还是要给 pip 换一个国内的源.可以显著的提升安装速度.有更多的时间来研究算法. 下面,列一下收集到的国内源: 阿里云 http://mirrors.aliyun.com/pypi/simple/ 中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/ 豆瓣 (douban) http://pypi.douban.com/simple/ 清华大学 http

pip/pip3国内源

在使用pip/pip3安装一些安装包时,由于网络原因会出现读取超时错误(ReadTimeoutError).这时可以使用一些国内源来下载. Error 在使用pip3安装PySide2时出现ReadTimeoutError. $ pip3 install PySide2 Solution 使用国内源 例如: $ pip3 install -i https://pypi.douban.com/simple/ PySide2 Record 清华源:https://pypi.tuna.tsinghua