I am facing the problem where tensorflow is not running in the jupyter notebook it is showing me
No module named tensorflow
But it is running ine anaconda prompt how to fix this
I am facing the problem where tensorflow is not running in the jupyter notebook it is showing me
No module named tensorflow
But it is running ine anaconda prompt how to fix this
Personally I would try it this:
First create a new environment:
conda create -n test_tensor
Second we can activate that enviornment now that we created using the source command:
source activate test_tensor
Then we can install pip:
conda install pip
The we can installTensorFlow
pip install --upgrade tensorflow
These links could help also: