No module named tensorflow in jupyter

后端 未结 13 1239
梦如初夏
梦如初夏 2020-12-04 18:06

I have some imports in my jupyter notebook and among them is tensorflow:

ImportError                               Traceback (most recent call last)


        
相关标签:
13条回答
  • 2020-12-04 18:55

    Probably there is a problem with the TensorFlow in your environment. In my case, After installing some libs, my TensorFlow stopped working.

    So I installed TensorFlow again using pip. like so:

    just run

    pip install tensorflow
    

    then I re-imported it into my jupyter notebook as :

    import tensorflow as ft
    

    In case you want to install jupyter and base libs try this:

    pip install jupyter tensorflow keras numpy scipy ipython pandas matplotlib sympy nose
    
    0 讨论(0)
提交回复
热议问题