1、问题:pip._vendor.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Read timed out.
解决: 1》pip --default-timeout=1000 install -U flask-sqlalchemy(这个方法有点扯蛋。。。)
2》更换镜像:pip3 config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple,再执行pip命令,解决。
可参考:https://blog.csdn.net/aaalswaaa1/article/details/120438827
2、