How to install TensorFlow with Python 3.8

前端 未结 3 546
名媛妹妹
名媛妹妹 2021-01-18 12:20

Whenever I try to install TensorFlow with pip on Python 3.8, I get the error that TensorFlow is not found. I have realized later on that it is not supported by Python 3.8.

3条回答
  •  执念已碎
    2021-01-18 13:10

    I tried this in Anaconda and faced problems when installing Tensorflow 1.14.0.

    Steps to Resolve

    1. Create a new environment

    2. Check the python version

      conda search python
      

    I found version 3.8.0. Tensorflow 1.14 is not supported with this version.

    1. Next step is to downgrade python in new environment to 3.7.0

      conda install python=3.7.0

    Once this is done, install TensorFlow 1.14.

提交回复
热议问题