1. pip._vendor.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host=‘files.pythonhosted.org‘, port=443): Read timed out
原因: 默认的pip的超时时间为15秒, 需要进行超时时间设置
pip install --default-timeout=100 SQLAlchemy==1.3.13
原文:https://www.cnblogs.com/xingxia/p/python_pip_errors.html