Python3.7:pip install xxx 出现 SSLCertVerificationError

用 pip 安装包时,出现了如下的问题,版本是 Python3.7:

pip install web.py==0.40dev1

查知是因为高版本的 Python 会对目标网站的 SSL 证书进行验证,添加 --trusted-host domain 绕过即可

解决参考:pip install --trusted-host pypi.org --trusted-host files.pythonhosted.org web.py==0.40dev0

你可能感兴趣的:(Python3.7:pip install xxx 出现 SSLCertVerificationError)