谷歌机器学习intro_to_pandas.ipynb中加载csv错误

在谷歌的编程联系中,运行以下代码时候

california_housing_dataframe = pd.read_csv("https://download.mlcc.google.cn/mledu-datasets/california_housing_train.csv", sep=",")
california_housing_dataframe.describe()

运行会报如下错误:

SSLCertVerificationError
Traceback (most recent call last):
File “/usr/lib/python3.7/urllib/request.py”, line 1183, in do_open
h.request(req.get_method(), req.selector, req.data, headers)

查了下资料,大致原因是:大部分https的网站需要有SSL证书,https的安全基础是SSL,如果没有SSL证书,就会拒绝访问。
或者就是此次访问忽略证书验证,具体解决方案如下:
 

import ssl

ssl._create_default_https_context = ssl._create_unverified_context

导入相应的模块,并取消证书的验证。

你可能感兴趣的:(机器学习)