首页 > 解决方案 > PowerPC ppc64le 上的 TensorFlow 安装失败

问题描述

我正在尝试在 Rhel 7.6 ppc64le 上安装 tensorflow。我安装了 Python 3.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

标签: pythontensorflowpippowerpcrhel7

解决方案


它失败了,因为它在 pypi 上找不到适合您的设置的任何内容。如果您查看tensorflow pypi 页面,您将看到只有 wheel 文件可用,并且仅适用于基于 x86 或 x64 的系统。对于 ppc64le 没有。

不过,您有一些选择:

  1. 从源代码构建,请参阅文档
  2. tensorflow使用 miniconda,因为在支持您的架构的默认通道中有一个 conda 包

推荐阅读