当我尝试使用Python下载文件时:
import os
import cdflib
import urllib.request
urllib.request.urlretrieve('https://rbsp-ect.lanl.gov/data_pub/rbspa/rept/level2/sectors/2014/rbspa_rel03_ect-rept-sci-L2_20140104_v5.0.0.cdf')
我收到此错误: URLError:urlopen错误[SSL:CERTIFICATE_VERIFY_FAILED]证书验证失败(_ssl.c:777)
我在线搜索了解决方案。最受欢迎的解决方案是:
/Applications/Python\ 3.6/Install\ Certificates.command
但是,我在Mac上找不到目录“ / Applications / Python \ 3.6 /”。这可能是因为我使用水蟒。 其他解决方案如下:
pip install certifi
我喜欢已经安装的软件包。