我的内核一直在死,但我不知道问题是什么。我重新安装了anaconda几次,但没有任何工作。错误消息是"无法导入PY3。"有人对如何解决这个问题有任何想法吗?
答案 0 :(得分:0)
运行此 -
conda remove ipykernel ipython jupyter_client jupyter_core traitlets ipython_genutils
conda clean -tipsy
conda install ipykernel ipython jupyter_client jupyter_core traitlets ipython_genutils
jupyter notebook
答案 1 :(得分:0)
更新numpy,然后尝试或删除ipykernel,然后再次安装它,然后尝试。
答案 2 :(得分:0)
尝试在脚本的开头添加以下代码
import os
os.environ['KMP_DUPLICATE_LIB_OK']='True'
这可能与内核多次尝试导入模块导致崩溃有关。