Tensorflow r1.0 : could not a find a version that satisfies the requirement tensorflow

前端 未结 11 1395
既然无缘
既然无缘 2020-11-30 22:13

I want to install Tensorflow 1.o for python on windows.

This is information for my system.

D:\\>python --version
Python 3.5.2 ::          


        
11条回答
  •  Happy的楠姐
    2020-11-30 23:03

    Tensorflow on windows needs python 3.5. You can follow following steps to activate python 3.5 in anaconda:

    1. See which version of python you have: conda search python
    2. If you already have python 3.5 then go to step 3 otherwise use conda create -n py35 python=3.5 anaconda to create python 3.5
    3. Activate python 3.5 using activate py35
    4. Now install tensorflow using conda install tensorflow

    If step4 is not working i.e, something like "tensorflow: no package found " then follow this tutorial to forge conda-forge channel and then try installing tensorflow using step4. It worked for me.

提交回复
热议问题