Reputation: 378
I am trying to install tensorflow on Ananconda2 in windows 64 bit. I've tried the following steps:
conda create --name tensorflow python=3.5
activate tensorflow
conda install -c conda-forge tensorflow
Tensorflow got installed successfully and i could check that in Anaconda prompt. However, when I open my python2 Jupyter notebook and try with the following:
import tensorflow as tf
I get an error says "module tensorflow is not found". Could you please help!
Upvotes: 1
Views: 2574
Reputation: 137
Solution:- (Note:- This will surely work for all!!)
Step 1:- conda search python
Step 2:- conda install python=3.5.2
Step 3:- pip install tensorflow
Step 4:- import tensorflow as tf
Done!!
Upvotes: 1