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

前端 未结 11 1389
既然无缘
既然无缘 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条回答
  •  时光取名叫无心
    2020-11-30 23:04

    Try this

    Installing with Anaconda

    conda create --name tensorflow python=3.5
    activate tensorflow
    conda install jupyter
    conda install scipy
    pip install tensorflow
    or
    pip install tensorflow-gpu
    

    It is important to add python=3.5 at the end of the first line, because it will install Python 3.5.

提交回复
热议问题