Jupyter | The kernel appears to have died. It will restart automatically |

前端 未结 8 1397
醉酒成梦
醉酒成梦 2020-12-16 13:11

I have been running a particular python script for some time. All of the script had been running perfectly fine (including in Jupyter) for many months before this. Now, some

8条回答
  •  醉梦人生
    2020-12-16 13:36

    For macOS Versions of 12.0 and above, Tensorflow GPU isn't supported. So try this piece of code, it worked for me -

    import os 
    os.environ['KMP_DUPLICATE_LIB_OK']='True'
    

提交回复
热议问题