TensorFlow not found using pip

后端 未结 30 2540
有刺的猬
有刺的猬 2020-11-22 08:06

I\'m trying to intstall TensorFlow using pip:

$ pip install tensorflow --user
Collecting tensorflow
Could not find          


        
30条回答
  •  攒了一身酷
    2020-11-22 08:24

    I figured out that TensorFlow 1.12.0 only works with Python version 3.5.2. I had Python 3.7 but that didn't work. So, I had to downgrade Python and then I could install TensorFlow to make it work.

    To downgrade your python version from 3.7 to 3.6

    conda install python=3.6.8
    

提交回复
热议问题