我按照https://github.com/root-mirror/cling#jupyter上的说明在装有Ubuntu 15.04的笔记本电脑上构建了Cling,因为我想将Cling内核用于Jupyter。我安装了Jupyter,我检查了Cling是否在我的PATH中,但是当我键入命令时

jupyter kernelspec install cling

我得到以下
OSError: [Errno 2] No such file or directory: 'cling'

有人知道发生了什么吗?

最佳答案

根据the source codejupyter kernelspec install命令将包含内核规范文件(kernel.json)的目录路径作为参数。因此,如果
您在〜/cling/src中克隆了cling存储库,这应该可以工作:

jupyter kernelspec install ~/cling/src/tools/cling/tools/Jupyter/kernel/cling

10-04 10:49