所遇情况:
Anaconda新建了一个tensorflow的环境(我自己的取名为tfenv)之后在jupter notebook中import numpy 和 matplotlib中的包时出现: “The kernel appears to have died. It will restart automatically.”
启动(tfenv)环境之后,conda安装这些包之后在Prompt终端运行并导入都没问题,
在这里插入图片描述
但是在jupyter notebook就出现问题,“The kernel appears to have died. It will restart automatically.”


我的解决方法:

1,启动自己的tensorflow所在的环境之后,先用卸载导入有问题的包
conda uninstall numpy 
conda uninstall matplotlib
2,更新自己的pip版本
python  -m pip install --upgrade pip
3,不要用conda安装!要改用pip命令安装numpy 和 matplotlib
pip install numpy
pip install matplotlib
4,重新启用
jupyter notebook
5,完毕

我的numpy 和matplotlib 已经正常:
在这里插入图片描述

GitHub 加速计划 / te / tensorflow
184.55 K
74.12 K
下载
一个面向所有人的开源机器学习框架
最近提交(Master分支:2 个月前 )
a49e66f2 PiperOrigin-RevId: 663726708 2 个月前
91dac11a This test overrides disabled_backends, dropping the default value in the process. PiperOrigin-RevId: 663711155 2 个月前
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐