win10下安装Django出现Python中的ssl模块不可用

来源:1-2 课程准备工作

weixin_慕用7082869

2019-06-08 23:00

win10下安装Django出现Python中的ssl模块不可用
报如下错误:
pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available.
Collecting django==2.2.2  
Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError("Can't connect to HTTPS URL because the SSL module is not available.")': /simple/django/  
Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError("Can't connect to HTTPS URL because the SSL module is not available.")': /simple/django/  
Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError("Can't connect to HTTPS URL because the SSL module is not available.")': /simple/django/  
Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError("Can't connect to HTTPS URL because the SSL module is not available.")': /simple/django/  
Retrying (Retry(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError("Can't connect to HTTPS URL because the SSL module is not available.")': /simple/django/  
Could not fetch URL https://pypi.org/simple/django/: There was a problem confirming the ssl certificate: HTTPSConnectionPool(host='pypi.org', port=443): Max retries exceeded with url: /simple/django/ (Caused by SSLError("Can't connect to HTTPS URL because the SSL module is not available.")) - skipping  
Could not find a version that satisfies the requirement django==2.2.2 (from versions: )No matching distribution found for django==2.2.2
pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available.
Could not fetch URL https://pypi.org/simple/pip/: There was a problem confirming the ssl certificate: HTTPSConnectionPool(host='pypi.org', port=443): Max retries exceeded with url: /simple/pip/ (Caused by SSLError("Can't connect to HTTPS URL because the SSL module is not available.")) - skipping
求解,安装Django安装失败


写回答 关注

2回答

  • 慕前端5183719
    2019-06-29 18:41:44

    pip3 install django==2.2.1 用这个试试看

  • 慕粉1766236
    2019-06-11 19:55:47

    将"[Anaconda安装目录]\Library\bin"加入PATH

    weixin...

    试了下,还是不行喔,还有其他方法嘛?百度说是pip版本不对,怎么弄?

    2019-06-11 23:49:36

    共 1 条回复 >

三小时带你入门Django框架 新版上架

Python开发上手Web框架的必备课程,三小时带你入门Django框架。

25588 学习 · 248 问题

查看课程

相似问题