jupyter使用中正在连接内核,报错No module named ipykernel_launcher

出现错误

启动jupyter之后,一直处于连接中,最终提示连接失败
如图:

jupyter使用中正在连接内核,报错No module named ipykernel_launcher_第1张图片

解决

很明显,提示缺少包,那么去对应虚拟环境的Scripts下安装缺少的!

1.首先确认内核地址是否正确

在anaconda prompt中输入命令行,使用jupyter kernelspec list查看安装的内核和位置

jupyter kernelspec list

如图
jupyter使用中正在连接内核,报错No module named ipykernel_launcher_第2张图片
显示我使用python3这个虚拟环境

那么我们去找到python3这个虚拟环境目录的Scripts目录,安装ipykernel!

pip install ipykernel

如图:

jupyter使用中正在连接内核,报错No module named ipykernel_launcher_第3张图片

之后,重启jupyter,一切正常!

你可能感兴趣的:(python,编程笔记(问题解决),jupyter,python,ide)