python爬虫遇到报错
Caused by SSLError("Can't connect to HTTPS URL because the SSL module is not available)
SSL模块不可用,网上的解决办法多为linux系统的办法。为数不多的关于windows的办法也无效。
最后找到解决办法:
指定安装1.0.2版本的openssl,也就是:
conda install openssl=1.0.2
安装好之后问题解决。
python爬虫遇到报错
Caused by SSLError("Can't connect to HTTPS URL because the SSL module is not available)
SSL模块不可用,网上的解决办法多为linux系统的办法。为数不多的关于windows的办法也无效。
最后找到解决办法:
指定安装1.0.2版本的openssl,也就是:
conda install openssl=1.0.2
安装好之后问题解决。