标签: windows python-3.x pip environment-variables platform
尝试安装python模块但出现错误“anymodule.whl不是此平台上支持的轮子。”甚至模块和python的版本都是相同的。
答案 0 :(得分:0)
在你的cmd中试试这个:
python -m pip install --upgrade pip
您弃用的pip版本导致此错误。完成后,尝试
pip install your_wheel_file
有关详情,请参阅filename.whl is not supported wheel on this platform
问候!