tensorflow 不适用于 conda 环境

tensorflow is not working on a conda environment

我按照 here 的说明在 conda 上创建了一个环境并在其上安装了 tensorflow。我使用 pip list | grep tensorflow 和 returns tensorflow (1.3.0) 检查我环境中的 tensorflow 版本。

但是当我想用 python 和 import tensorflow as tf 检查 tensorflow 时,我得到了错误:Failed to load the native TensorFlow runtime.

有什么解决这个问题的建议吗?谢谢

通过此命令修复它:

conda install -c https://conda.anaconda.org/jjhelmus tensorflow

从这个post