Python安装第三方库报错:“These Packages Do Not Match The Hashes From The Requirements File.“

问题:在安装第三方库时出现报错"These Packages Do Not Match The Hashes From The Requirements File."

原因:通常是因为网速问题导致的下载错误,导致对应的哈希值不匹配。

解决方法:需要在pip时,添加"–upgrade"参数即可。通常这时下载还会报错timeout,因此多加一个"–default-timeout=100000" 更为保险(timeout的赋值可以视情况变化)。

pip install --upgrade --default-timeout=100000 packagename

你可能感兴趣的:(python,开发语言,linux)