python2安装pip

curl https://bootstrap.pypa.io/pip/2.7/get-pip.py -o get-pip.py
# 如果你的系统中有多个 Python 2 版本,确保使用正确的 Python 版本来运行脚本。
python get-pip.py

解决报错

requests.exceptions.ConnectionError: HTTPSConnectionPool(host=‘xxx’, port=443): Max retries exceeded with url 使用requests时出错

1,检查是否安装库

certifi、cryptography、pyOpenSSL

# 没有的话请依次安装
pip install certifi
pip install cryptography
pip install pyOpenSSL

2,加入verify=False 忽略https校验

response = requests.get(url, headers=headers,verify=False)