pip 安装模块找不到或不支持此平台

报错提示:

C:UsersAdministratorDesktopcnn_captcha>pip install --upgrade C:UsersAdministratorDesktop
-1.15.2-cp36-cp36m-win_amd64.whl ERROR: tensorflow-1.15.2-cp36-cp36m-win_amd64.whl is not a supported wheel on this platform. C:UsersAdministratorDesktopcnn_captcha>pip -V pip 20.0.2 from c:program files (x86)python37-32libsite-packagespip (python 3.7)

解决方法:

https://pypi.org/ 

到这个网站上找到对应 whl 文件下载安装,有些模块并不支持32位的python或你的python版本过旧。

离线安装命令

pip install tensorflow.whl
原文地址:https://www.cnblogs.com/hlikex/p/12669138.html