码迷,mamicode.com
首页 > 其他好文 > 详细

MNIST手写数据集在运行中出现问题解决方案

时间:2019-10-19 19:10:51      阅读:117      评论:0      收藏:0      [点我收藏+]

标签:intel   legacy   原因   create   default   erro   back   post   community   

  今天在运行手写数据集的过程中,出现一个问题,代码没有问题,但是运行的时候一直报错,错误如下:

urllib.error.URLError: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1051)>


  查询网上的各种博客什么的,最后貌似是因为python3的原因出现的,目前采用的解决方案是在代码的顶端加上以下的几句代码,目前就可以很好的解决
import requests
requests.packages.urllib3.disable_warnings()
import ssl

try:
    _create_unverified_https_context = ssl._create_unverified_context
except AttributeError:
    # Legacy Python that doesn‘t verify HTTPS certificates by default
    pass
else:
# Handle target environment that doesn‘t support HTTPS verification
    ssl._create_default_https_context = _create_unverified_https_context

 参考的网页如下:

https://intellij-support.jetbrains.com/hc/en-us/community/posts/360000117730-SSL-error-in-accessing-MNIST-dataset



MNIST手写数据集在运行中出现问题解决方案

标签:intel   legacy   原因   create   default   erro   back   post   community   

原文地址:https://www.cnblogs.com/goulingyun/p/11704616.html

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