我正在尝试在Rhel 7.6 ppc64le上安装tensorflow。我安装了Python3.6.3。
错误:
pip install tensorflow
ERROR: Could not find a version that satisfies the requirement tensorflow (from versions: none)
ERROR: No matching distribution found for tensorflow希望在这个问题上有所帮助。
环境: Rhel 7.6 - ppc64le
python :3.6.3
发布于 2020-03-24 08:34:41
它失败了,因为它在pypi上找不到适合您的设置的任何内容。如果您检查tensorflow pypi页面,您将看到只有轮式文件是可用的,并且只适用于基于x86或x64的系统。对于ppc64le来说,根本没有。
不过,你有一些选择:
tensorflow的conda包,它支持您的体系结构。发布于 2021-05-15 06:49:21
您可以尝试使用Anaconda安装TensorFlow,因为Anaconda有时可以在旧CPU上安装TensorFlow。
> conda create -n tf_env tensorflow=2https://stackoverflow.com/questions/60825109
复制相似问题