What I Know now/Errors

[pip error] THESE PACKAGES DO NOT MATCH THE HASHES FROM THE REQUIREMENTS FILE

check patterned 2024. 3. 13. 17:29

 

 

발생한 오류:

ERROR: THESE PACKAGES DO NOT MATCH THE HASHES FROM THE REQUIREMENTS FILE. If you have updated the package versions, please update the hashes. Otherwise, examine the package contents carefully; someone may have tampered with them.

 

 

 

 

pip에서 cache를 이용해서 설치하기 때문에 발생하는 오류로 보입니다.

 

sudo pip install --no-cache-dir {설치파일}

 

rm ~/.cache/pip -rf

 

위 둘 중 하나를 사용해보면 해결될 것 같습니다. 저는 전자를 사용하여 해결하였습니다.

 

 

 

 

출처: https://stackoverflow.com/questions/40183108/python-packages-hash-not-matching-whilst-installing-using-pip