码迷,mamicode.com
首页 > 编程语言 > 详细

使用pip安装Python库超时解决办法

时间:2019-12-06 23:45:20      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:https   uri   attribute   djang   str   comm   配置   ini   span   

如果在国内安装Python库,强烈推荐使用豆瓣的源
http://pypi.douban.com/simple/

可以这样使用

pip install -i http://pypi.douban.com/simple/ --trusted-host=pypi.douban.com/simple ipython

比如安装django

pip install -i https://pypi.doubanio.com/simple/ --trusted-host pypi.doubanio.com django

每次这样会很麻烦,配置一下 Windows下面可以这样配置

1、在C:\Users\Administrator\AppData\Roaming目录下新建文件夹pip,

   2、在pip文件夹下新建pip.ini文件,然后在pip.ini 里输入

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

使用pip安装Python库超时解决办法

标签:https   uri   attribute   djang   str   comm   配置   ini   span   

原文地址:https://www.cnblogs.com/xu-xu/p/12000052.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!