当前位置:主页 > python教程 >

基于pip install django失败时的解决方法

发布:2022-04-07 10:10:17 121


我们帮大家精选了django安装相关的编程文章,网友扶君昊根据主题投稿了本篇教程内容,涉及到pip、install、django相关内容,已被493网友关注,下面的电子资料对本篇知识点有更加详尽的解释。

使用pip安装Django时报错,先是:

C:\Users\admin>pip install django 
Collecting django 
 Retrying (Retry(total=4, connect=None, read=None, redirect=None)) after connection broken by 'ReadTimeoutError("HTTPSConnectionPool(host='pypi.python.org', port=443): Read timed out. (read timeout=15)",)': /simple/django/ 
 Retrying (Retry(total=3, connect=None, read=None, redirect=None)) after connection broken by 'ProxyError('Cannot connect to proxy.', timeout('_ssl.c:733: The handshake operation timed out',))': /simple/django/ 
 Retrying (Retry(total=2, connect=None, read=None, redirect=None)) after connection broken by 'ProxyError('Cannot connect to proxy.', timeout('timed out',))': /simple/django/ 

之后开始下载后没多少就直接报错退出了,可以用下面的方法换源下载:

pip install -i https://pypi.douban.com/simple django 

下载速度很快,成功!

以上这篇基于pip install django失败时的解决方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持码农之家。


参考资料

相关文章

  • django框架CSRF防护原理及实例用法

    发布:2021-05-10

    这篇文章主要介绍了django框架CSRF防护原理与用法,结合实例形式分析了Django框架CSRF防护的概念、原理、使用方法及相关操作注意事项,需要的朋友可以参考下


网友讨论