numpy解決方法
pip install --default-timeout=1000 numpy
如果用:pip install numpy,很容易出現超時!
參考:https://blog.csdn.net/qq_40279192/article/details/106745876
下載過程中,出現:報錯"These Packages Do Not Match The Hashes From The Requirements File."
原因:網速問題導致的下載錯誤,導致對應的哈希值不匹配
解決方法:需要在pip時,添加"--upgrade"參數即可。
pip install --upgrade --default-timeout=1000 numpy
pandas解決方法
pip install --default-timeout=1000 pandas