Anaconda新建tensorflow环境下后解决The kernel appears to have died. It will restart automatically.
tensorflow
一个面向所有人的开源机器学习框架
项目地址:https://gitcode.com/gh_mirrors/te/tensorflow
免费下载资源
·
所遇情况:
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 个月前
更多推荐
已为社区贡献4条内容
所有评论(0)