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

前端 未结 11 1369
既然无缘
既然无缘 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 22:49

    Tensorflow requires a 64-bit version of Python.

    Additionally, it only supports Python 3.5.x through Python 3.8.x.

    If you're using a 32-bit version of Python or a version that's too old or new, then you'll get that error message.

    To fix it, you can install the 64-bit version of Python 3.8.6 via Python's website.

    0 讨论(0)
  • 2020-11-30 22:50

    I was getting the same error

    1. Get Python 3.5
    2. Upgrade pip version to 9
    3. Install tensorflow

    It worked for me

    0 讨论(0)
  • 2020-11-30 22:51

    i had python 3.8.5 ..but it will not work with tenserflow..

    so i installed python 3.7.9 and it worked.

    0 讨论(0)
  • 2020-11-30 22:53

    I did it with:

    python3 -m pip install --upgrade tensorflow
    
    0 讨论(0)
  • 2020-11-30 22:53

    The TensorFlow package couldn't be found by the latest version of the "pip".
    To be honest, I really don't know why this is...
    but, the quick fix that worked out for me was:
    [In case you are using a virtual environment]
    downgrade the virtual environment to python-3.8.x and pip-20.2.x In case of anaconda, try:

    conda install python=3.8
    

    This should install the latest version of python-3.8 and pip-20.2.x for you.
    And then, try

    pip install tensorflow
    

    Again, this worked fine for me, not sure if it'll work the same for you.

    0 讨论(0)
  • 2020-11-30 22:58

    From your python version output, looks like that you are using Anaconda python, in that case, there is a simple way to install tensorflow.

    conda install -c conda-forge tensorflow
    

    This command will take care of all dependencies like upgrade/downgrade etc.

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