Python packages hash not matching whilst installing using pip

前端 未结 7 826
甜味超标
甜味超标 2020-12-30 20:26

I am using pip to install all my python packages but get error as shown in the trace below. What is the problem and how can I solve it?

usr@comp:~$ pip insta         


        
相关标签:
7条回答
  • 2020-12-30 21:19

    --no-cache-dir did not work for me in raspberry pi 4 at first.

    Found that the problem was due to unexpected network change/failure during pip installation

    I had to download the broken .whl file manually with wget

    and install it like below: sudo pip install scipy-1.3.0-cp37-cp37m-linux_armv7l.whl

    followed by sudo pip install --no-cache-dir keras

    Then it worked.

    0 讨论(0)
提交回复
热议问题