Asif Khan
Asif Khan

Reputation: 1278

How to install tensorflow for python 2.7?

I installed python 2.7 in windows 10 environment using conda. According to documentation of tensorflow, it only supports version 3 and above. Is there any way to install tensorflow while keeping python version 2.7?

Upvotes: 3

Views: 7124

Answers (1)

jonathan
jonathan

Reputation: 91

"TensorFlow supports Python 3.5.x and 3.6.x on Windows."

Hence you can not use tensorflow with Python 2.7 on Windows

Once you have a Anaconda with Python 3.6 you can simply

conda install tensorflow

Upvotes: 4

Related Questions