ERROR: Could not find a version that satisfies the requirement tensorflow (from versions: none) ERROR: No matching distribution found for tensorflow)

后端 未结 5 987
逝去的感伤
逝去的感伤 2021-01-19 14:20

I want to install tensorflow to use Keras LSTM I installed Keras, and i import this lines to my code.

from keras.callbacks import LambdaCallback
from keras.         


        
5条回答
  •  無奈伤痛
    2021-01-19 14:41

    Solution

    I figured out that the issue is with the Python version.

    • ie : python 3.8.1 doesn't have the support for Tensorflow 3.8.1

    So I downgraded Python version from 3.8.1 to 3.7.6 Later I worked fine

    pip install https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.8.0-py3-none-any.whl
    

    My System Specification

    • Windows 10
    • python 3.8.1
    • pip 19.3.1

提交回复
热议问题