1. 程式人生 > >python 安裝第三方庫,超時報錯--Read timed out.(安裝TensorFlow時會出現)

python 安裝第三方庫,超時報錯--Read timed out.(安裝TensorFlow時會出現)

近期在安裝TensorFlow中的沙箱工具時,總是會出現Read timed out這個錯誤。經查是由於python在安裝三方庫時設定的時間限制。
一般我們使用的命令為:
pip install XXXX(XXXX為你即將要安裝的三方庫)
此時可能會出現以下錯誤:
Read timed out
這是的解決辦法為:
pip –default-timeout=100 install -U XXXX即可完成安裝