博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
PyPI使用国内源
阅读量:7251 次
发布时间:2019-06-29

本文共 1864 字,大约阅读时间需要 6 分钟。

通过几次 pip 的使用,对于默认的 pip 源的速度实在无法忍受,于是便搜集了一些国内的pip源,如下:

阿里云 
中国科技大学 
豆瓣(douban)  
清华大学 
中国科学技术大学 
使用方法很简单,直接 -i 加 url 即可!如下:

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

 

如果有如下报错:

请使用命令:

1
# 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脚本如下:

1
2
3
4
5
6
7
#!/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,仅以记录一下,以便于后期查阅!

 

------日期:2018年11月1日 增加Python配置pip默认源脚本,复制到pip_source.py,执行即可。

#!/usr/bin/python# coding: utf-8import platformimport osos_type = platform.system()if "Linux" == os_type:    fileDirPath = "%s/.pip" % os.path.expanduser('~')    filePath = "%s/pip.conf" % fileDirPath    if not os.path.isdir(fileDirPath):        os.mkdir(fileDirPath)    fo = open(filePath, "w")    fo.write(        "[global]\nindex-url=https://pypi.tuna.tsinghua.edu.cn/simple/\n[install]\ntrusted-host=pypi.tuna.tsinghua.edu.cn\n")    fo.close()    print "Configuration is complete"elif "Windows" == os_type:    fileDirPath = "%s\\pip" % os.path.expanduser('~')    filePath = "%s\\pip.ini" % fileDirPath    if not os.path.isdir(fileDirPath):        os.mkdir(fileDirPath)    fo = open(filePath, "w")    fo.write(        "[global]\nindex-url=https://pypi.tuna.tsinghua.edu.cn/simple/\n[install]\ntrusted-host=pypi.tuna.tsinghua.edu.cn\n")    fo.close()    print "Configuration is complete"else:    exit("Your platform is unknow!")

转载于:https://www.cnblogs.com/weiwei-python/p/9900467.html

你可能感兴趣的文章
陈天奇团队新研究:自动优化深度学习工作负载
查看>>
你的无人机快递来了?小心被查“水表”
查看>>
收录 Uboot 详解
查看>>
MongoDB数据库的索引操作(转)
查看>>
线程的实现
查看>>
重建日志文件
查看>>
鱼鹰软件荣获“北京广告产业发展30周年”杰出贡献单位奖
查看>>
四、oracle基本sql语句和函数详解
查看>>
中合国创杯2017年创客中国互联网+创新创业大赛复赛成功举办 20各项目入围总决赛...
查看>>
UVAoj 11324 - The Largest Clique(tarjan + dp)
查看>>
使用Matplotlib绘制正余弦函数、抛物线
查看>>
四位辉光管时钟-学长毕设
查看>>
大话RAC介质恢复---联机日志损坏
查看>>
oracle 内存分配和调优 总结
查看>>
移植最新版libmemcached到VC++的艰苦历程和经验总结(上)
查看>>
诡异的bug: tcsh陷入死循环
查看>>
java-第一章-上机练习-04
查看>>
Active Directory 基础 (1)
查看>>
xml地图生成网址
查看>>
Python 练习1
查看>>