导入tensorflow 1.7时Python内核死亡

前端之家收集整理的这篇文章主要介绍了导入tensorflow 1.7时Python内核死亡前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我想使用tensorflow insinde Jupyter笔记本.但是,跑步

import tensorflow as tf

在Jupyter笔记本中立即触发弹出窗口:

The kernel appears to have died. It will restart automatically.

此问题仅在更新为tensorflow 1.7后才开始.我没有使用tensorflow几周,所以它也可能是由于使用Python 3.6更新了anaconda 5.1.

我使用2010年中期的MacBookPro和“High Sierra 10.13.4”.使用Python 3.6删除并重新安装anaconda 5.1,然后通过安装tensorflow(而不是单个其他库)

pip3 install --upgrade tensorflow

没有解决问题.我不使用孤立的环境. “anaconda3”文件夹不在我的主文件夹中,而是直接在“Macintosh HD”中.

在重新安装anaconda之前,我通过这些说明将其删除
https://docs.anaconda.com/anaconda/install/uninstall.我也没有尝试在Jupyter外面运行张量流,只是因为我不知道如何.但即使我这样做,我仍然想使用Jupyter.

最佳答案
我也在运行2010年中期的MacbookPro并且一直面临同样的问题.似乎唯一的解决方案是降级到Tensorflow 1.5.您可以通过运行以下命令来执行此操作:

pip3 uninstall tensorflow 
pip3 install tensorflow==1.5

归功于this post解决方案.

原文链接:https://www.f2er.com/python/438868.html

猜你在找的Python相关文章