简体   繁体   English

"Jupyter notebook 死内核"

[英]Jupyter notebook dead kernel

So I tried to fix my Jupyter notebook (it wasn't letting me import libraries), however, it appears I made things worse.所以我试图修复我的 Jupyter 笔记本(它不允许我导入库),但是,似乎我让事情变得更糟了。 Now whenever I start the notebook, the kernel starts, and then instantly dies.现在每当我启动笔记本时,内核都会启动,然后立即死亡。 The error I get is below:我得到的错误如下:

[I 15:00:39.002 NotebookApp] Serving notebooks from local directory: /Users/stephanng/Documents/Coding/IPyNB
[I 15:00:39.002 NotebookApp] 0 active kernels 
[I 15:00:39.003 NotebookApp] The Jupyter Notebook is running at: http://localhost:8888/
[I 15:00:39.003 NotebookApp] Use Control-C to stop this server and shut down all kernels (twice to skip confirmation).
[W 15:00:43.558 NotebookApp] Notebook 157 Muon Analysis - Copy.ipynb is not trusted
[I 15:00:44.045 NotebookApp] Kernel started: 152a55a1-e393-4e86-b271-859b924e6a3e
/Users/stephanng/anaconda/envs/py27/bin/python: No module named _signatures; 'ipykernel' is a package and cannot be directly executed
[I 15:00:47.047 NotebookApp] KernelRestarter: restarting kernel (1/5)
/Users/stephanng/anaconda/envs/py27/bin/python: No module named _signatures; 'ipykernel' is a package and cannot be directly executed
[I 15:00:50.059 NotebookApp] KernelRestarter: restarting kernel (2/5)
/Users/stephanng/anaconda/envs/py27/bin/python: No module named _signatures; 'ipykernel' is a package and cannot be directly executed
[I 15:00:53.067 NotebookApp] KernelRestarter: restarting kernel (3/5)
/Users/stephanng/anaconda/envs/py27/bin/python: No module named _signatures; 'ipykernel' is a package and cannot be directly executed
[W 15:00:54.257 NotebookApp] Timeout waiting for kernel_info reply from 152a55a1-e393-4e86-b271-859b924e6a3e
[I 15:00:56.078 NotebookApp] KernelRestarter: restarting kernel (4/5)
WARNING:root:kernel 152a55a1-e393-4e86-b271-859b924e6a3e restarted
/Users/stephanng/anaconda/envs/py27/bin/python: No module named _signatures; 'ipykernel' is a package and cannot be directly executed
[W 15:00:59.094 NotebookApp] KernelRestarter: restart failed
[W 15:00:59.095 NotebookApp] Kernel 152a55a1-e393-4e86-b271-859b924e6a3e died, removing from map.
ERROR:root:kernel 152a55a1-e393-4e86-b271-859b924e6a3e restarted failed!
[W 15:00:59.116 NotebookApp] Kernel deleted before session
[W 15:00:59.117 NotebookApp] 410 DELETE /api/sessions/15eb80b6-d134-4142-96fa-1b1012be280c (::1) 5.42ms referer=http://localhost:8888/notebooks/157%20Muon%20Analysis%20-%20Copy.ipynb

This is a FAQ. 这是一个FAQ。

tl;dr: Do this within your notebook if you need eg numpy: tl; dr:如果您需要例如numpy,请在您的笔记本中执行此操作:

import sys
!conda install --yes --prefix {sys.prefix} numpy

Please refer to http://jakevdp.github.io/blog/2017/12/05/installing-python-packages-from-jupyter/ for a detailed discussion of why "import foo" in a Jupyter environment differs from "import foo" in a command line environment. 请参阅http://jakevdp.github.io/blog/2017/12/05/installing-python-packages-from-jupyter/ ,详细讨论为什么Jupyter环境中的“import foo”与“import foo”不同“在命令行环境中。

激活 conda 环境后“python -m ipykernel install --user”运行此命令

try doing this in you terminal尝试在您的终端中执行此操作

pip install -U numpy pip install -U numpy

"

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM