error: Failed to load the native TensorFlow runtime

前端 未结 14 1749
终归单人心
终归单人心 2020-12-08 10:36

i\'m new to tensorflow, today i installed tensorflow using:

C:\\>pip3 install --upgrade tensorflow
Collecting tensorflow
  Using cached tensorflow-1.2.0-c         


        
14条回答
  •  借酒劲吻你
    2020-12-08 11:01

    I had a similar error on OSX Siera when i installed tensorflow through pip on python 3.6. It was fixed by using the binary URL that identifies the TensorFlow Python package

    sudo pip3 install --upgrade tfBinaryURL   # Python 3.n
    

    in my case tfBinaryURL is as below:

    sudo pip3 install --upgrade https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.3.0-py3-none-any.whl
    

提交回复
热议问题