Installing Tensorflow 1.10 on El Capitan 10.11.6

后端 未结 2 1973
梦谈多话
梦谈多话 2021-02-13 17:45

I am trying to install tensorflow 1.10 on my old mac, but I run into the same problem every time. As soon as I start the python shell and I do get the error below.

I di

相关标签:
2条回答
  • 2021-02-13 17:47

    I think there is something wrong with TensorFlow 1.10 and OS X El Capitan (10.11.6)!
    Just install 1.9.0 instead of 1.10 with the pip command:

    pip3 install tensorflow==1.9.0
    

    or its GPU version:

    pip3 install tensorflow-gpu==1.9.0
    
    0 讨论(0)
  • 2021-02-13 17:48

    It seems to be a version conflict. I can succesfully run Tensorflow 1.9.

    0 讨论(0)
提交回复
热议问题