Error when installing Tensorflow - Python 3.8

后端 未结 7 1913
借酒劲吻你
借酒劲吻你 2020-12-31 11:47

I\'m new to programming and following a course where I must install Tensorflow. The issue is that I\'m using Python 3.8 which I understand isn\'t supported by Tensorflow.

7条回答
  •  独厮守ぢ
    2020-12-31 12:26

    Tensorflow is only supported until python 3.7 as of now. You can check it here: https://www.tensorflow.org/install/pip

    But there is a way to install it on Python3.8, just run the below command that will do your job:

    python -m pip install --upgrade https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.12.0-py3-none-any.whl
    

    This command work on mac and windows both, I haven't tested on Linux.

提交回复
热议问题