AttributeError: module 'certifi'
2023-09-26 本文已影响0人
Bigglesworth
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