欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

jupyter notebook运行出错:ModuleNotFoundError: No module named ‘keras‘ 解决办法

程序员文章站 2022-06-30 21:08:39
接上一篇《win10+python3.6+tensorflow-cpu+keras+Pycharm环境下的tensorflow配置方法》通过Anaconda Prompt 打开查看当前可用的kerneljupyter kernelspec list显示添加Python kernelconda activate tensorflow #tensorflow是之前创建的虚拟环境名字在tensorflow虚拟环境下,安装ipykernelconda install ipykernel...

通过Anaconda Prompt 打开

查看当前可用的kernel

jupyter kernelspec list 

显示
jupyter notebook运行出错:ModuleNotFoundError: No module named ‘keras‘ 解决办法

添加Python kernel

conda activate tensorflow #tensorflow是之前创建的虚拟环境名字 

在tensorflow虚拟环境下,安装ipykernel

conda install ipykernel 

jupyter notebook运行出错:ModuleNotFoundError: No module named ‘keras‘ 解决办法

python -m ipykernel install --name tensorflow 

jupyter notebook运行出错:ModuleNotFoundError: No module named ‘keras‘ 解决办法

再次查看当前可用的kernel

jupyter kernelspec list 

显示
jupyter notebook运行出错:ModuleNotFoundError: No module named ‘keras‘ 解决办法

jupyter notebook 

jupyter notebook运行出错:ModuleNotFoundError: No module named ‘keras‘ 解决办法

jupyter notebook运行出错:ModuleNotFoundError: No module named ‘keras‘ 解决办法
jupyter notebook运行出错:ModuleNotFoundError: No module named ‘keras‘ 解决办法
Anaconda Jupyter Notebook添加
PyTorch/TensorFlow/Keras Python Kernel
同此方法

参考

1.Anaconda Jupyter Notebook添加PyTorch/TensorFlow/Keras Python Kernel 图解说明
2.在jupyter notebook导入keras出错:ModuleNotFoundError: No module named ‘keras’ 解决办法
3.如何在Jupyter Notebook中使用Python虚拟环境?
4.jupyter notebook中使用keras

本文地址:https://blog.csdn.net/weixin_45656790/article/details/108875446