could not build wheels for scipy which use PEP 517 and cannot be installed directly解决

前几天,给我的jetson xavier重新刷系统,刷的是jetpack4.3版本。之后在pip3 install keras的时候,始终卡在安装scipy的地方,经过一番努力,最后报错内容大致是“could not build wheels for scipy which use PEP 517 and cannot be installed directly”
这个问题困扰到我打算重新刷机,最终通过以下解决:
pip3 --no-use-pep517 install keras解决

你可能感兴趣的:(深度学习&计算机视觉,pip)