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

前端 未结 11 1370
既然无缘
既然无缘 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: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.

    0 讨论(0)
  • 2020-11-30 23:03

    The solution for me was sooo dumb!!

    I was using Python 3.8 in my environment. I made a new environment using Python 3.7, and the install worked fine.

    source

    0 讨论(0)
  • 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.

    0 讨论(0)
  • 2020-11-30 23:05

    upgrading pip worked for me

    python -m pip install --upgrade pip
    
    0 讨论(0)
  • 2020-11-30 23:13

    I was in same problem.

    Below command solved my problem

    pip3 install --upgrade https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.0.0-py3-none-any.whl
    

    to find the list of all the urls based on the python version and CPU or GPU only refer to: https://www.tensorflow.org/install/pip

    0 讨论(0)
提交回复
热议问题