Sepid
Sepid

Reputation: 115

tensorflow is not working on a conda environment

I created an environment on conda and installed the tensorflow on it, with following the instruction from here. I check the tensorflow version on my environment with pip list | grep tensorflow and it returns tensorflow (1.3.0).

but when I want to check tensorflow with python with import tensorflow as tf I got the error:Failed to load the native TensorFlow runtime.

Any suggestion how to solve this issue? Thanks

Upvotes: 0

Views: 4287

Answers (1)

Sepid
Sepid

Reputation: 115

fixed it by this command:

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

from this post

Upvotes: 1

Related Questions