No module named tensorflow in jupyter

后端 未结 13 1285
梦如初夏
梦如初夏 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:43

    Jupyter runs under the conda environment where as your tensorflow install lives outside conda. In order to install tensorflow under the conda virtual environment run the following command in your terminal:

     conda install -c conda-forge tensorflow 
    

提交回复
热议问题