installing python packages have issue in md5

谁都会走 提交于 2019-11-30 10:36:47

If you get an error like pip: error: no such option: --hash, you are using too old a version of Pip, use the following command to upgrade:

$ pip install --upgrade pip

On Windows the recommended command is:

python -m pip install --upgrade pip

After the update, if the this error appeared again, use "--no-cache-dir" when you upgrade/install:

pip --no-cache-dir install YOUR-PACKAGENAME

or

pip --no-cache-dir install --upgrade YOUR-PACKAGENAME

A good reason for the hash to be different is if you use a platform that isn’t covered by the existing hashes for a package that has wheels.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!