Error when installing Tensorflow - Python 3.8

后端 未结 7 1917
借酒劲吻你
借酒劲吻你 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:19

    Uninstall all your python versions and use the latest anaconda.

    $ conda create --name tensorflow python=3.5
    

    This way you create a virtual environment with python 3.5 which is supported by tensorflow.

    So now you can install it.

    $ activate tensorflow
    (tensorflow) $ pip install tensorflow
    

提交回复
热议问题