You are on page 1of 1

1.

Step 1: Install Anaconda

2. Step 2: Downgrade it from the Anaconda command prompt which is “conda install
python=3.5”

1. Create a new environment with Anaconda and Python 3.5:


conda create -n tensorflow python=3.5 anaconda

2. Activate the environment:


activate tensorflow

3. After this you can install Theano, TensorFlow and Keras:


conda install theano
conda install mingw libpython
pip install tensorflow
pip install keras

4. Update the packages:


conda update --all

5. Run Spyder:

Update all Windows packages

If the above does not work then install from intel package given below

Also update all Visual C++ redistributable versions

pip install --ignore-installed --upgrade


https://storage.googleapis.com/tensorflow/windows/cpu/tensorflow-1.2.1-cp36-cp36m-
win_amd64.whl

According to :https://anaconda.org/intel/tensorflow
To install this package with conda run:

conda install -c intel tensorflow


pip install To install this package with pip:

pip install –i https://pypi.anaconda.org/intel/simple tensorflow

You might also like