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

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

提交回复
热议问题