我們直接用命令:pip install 庫名,因網絡太慢,導致下載超時~~~
針對在安裝Python庫出現的超時問題---總結了如下兩種解決方案:
其一:
pip --default-timeout=100 install -U 庫名
例如:
pip --default-timeout=100 install -U numpy
其二:
包源鏡像:pip install -i https://pypi.tuna.tsinghua.edu.cn/simple 庫名
例如:
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple superset
親測,通過使用第二種方式把小編遇到的超時問題給解決了,諸位可以酌情使用其中的方法去解決超時問題!!