pip安裝模組超時怎麼處理

minseo發表於2024-03-19

pip下載模組超時
提示如下

HTTPSConnectionPool(host='pypi.tuna.tsinghua.edu.cn', port=443): Read timed out

解決辦法
增加超時引數把超時時間設定長一點

 --default-timeout=100 h

完整命令如下
注意100和h之間有空格

pip install jaxlib --default-timeout=100 h

相關文章