当我尝试为 jupyter 安装 C 内核时出错
Error when I try install a C kernel for jupyter
我正在尝试按照文档中的步骤为 jupyter 安装 C 内核。这是
> pip install jupyter-c-kernel
> install_c_kernel
> jupyter-notebook
在第二步出现以下错误:
Traceback (most recent call last):
File "/usr/local/bin/install_c_kernel", line 8, in <module>
from jupyter_client.kernelspec import KernelSpecManager
ModuleNotFoundError: No module named 'jupyter_client.kernelspec'
显然它无法识别模块,我不知道如何修复它。有人可以帮助我吗?
install_c_kernel --user
是对我有用的命令,在 Github 问题上推荐用于此处的回购:https://github.com/brendan-rius/jupyter-c-kernel/issues/38
如果你仔细阅读问题,它也显示为 bash 但是当你打开笔记本时它显示为 C。
如果您已经打开了 .ipynb
笔记本,您可以从菜单中选择 Kernel
,在底部它会提供更改内核的选项。
我正在尝试按照文档中的步骤为 jupyter 安装 C 内核。这是
> pip install jupyter-c-kernel
> install_c_kernel
> jupyter-notebook
在第二步出现以下错误:
Traceback (most recent call last):
File "/usr/local/bin/install_c_kernel", line 8, in <module>
from jupyter_client.kernelspec import KernelSpecManager
ModuleNotFoundError: No module named 'jupyter_client.kernelspec'
显然它无法识别模块,我不知道如何修复它。有人可以帮助我吗?
install_c_kernel --user
是对我有用的命令,在 Github 问题上推荐用于此处的回购:https://github.com/brendan-rius/jupyter-c-kernel/issues/38
如果你仔细阅读问题,它也显示为 bash 但是当你打开笔记本时它显示为 C。
如果您已经打开了 .ipynb
笔记本,您可以从菜单中选择 Kernel
,在底部它会提供更改内核的选项。