Installing tensorflow in Windows:
First, follow the link below.You will come across a
lot of errors. Just bare with me.
https://www.tensorflow.org/install/install_windows
If you are using anaconda with python 3.6 you
should type these to make tensorflow work::
conda create --name tensorflow
python=3.5
activate tensorflow
conda install jupyter
conda install scipy
pip install tensorflow
\# or
\# pip install tensorflow-gpu
because currently only python 3.5 supports tensorflow or has
no problem.
Tensorflow is one of the emerging software in Machine
Learning. Using tensorflow we can define classifiers and train those to perform
various applications.
FAQ. Where to type python commands?
Python commands can be typed in command prompt. First you
need to activate python in command prompt by typing python command.
FAQ. How to activate tensorflow in command promt?
We use command activate tensorflow.
FAQ. What is Anaconda?
Anaconda is just a complex platform which contains all
tensorflow,scipy,jupyter already in it.
Comments
Post a Comment