代码改变世界

flask-sqlalchemy安装超时的解决

2022-07-20 17:12  改改~_~  阅读(322)  评论(0编辑  收藏  举报
kages/pip/_vendor/urllib3/response.py", line 336, in _error_catcher
    raise ReadTimeoutError(self._pool, None, 'Read timed out.')
pip._vendor.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Read timed out.


pip3 安装“flask-sqlalchemy”总是提示超时,解决:先安装 sqlalchemy再安装flask-sqlalchemy


pip3 install sqlalchemy
pip3 install flask-sqlalchemy