python3 执行程序报错
certs.append(certifi.where())
AttributeError: module 'certifi' has no attribute 'where'
解决办法:
pip3 install certifi --upgrade
certs.append(certifi.where())
AttributeError: module 'certifi' has no attribute 'where'
解决办法:
pip3 install certifi --upgrade