编程语言
首页 > 编程语言> > python – 有没有办法告诉jupyter笔记本是用哪个内核构建的?

python – 有没有办法告诉jupyter笔记本是用哪个内核构建的?

作者:互联网

我在Jupyter中安装了多个内核.如果没有在浏览器中完全启动Jupyter,我想知道使用哪个版本的Python或Julia或R来创建笔记本.有没有办法使用命令行查询ipynb文件?

How to know which is running in Jupyter notebook?
讨论了如何更改内核.我想能够查询笔记本.

解决方法:

正如@Georgy所说,你可以使用jq,即:

ismael-vc@toybox ~/Downloads % cat Untitled.ipynb | jq '.metadata.kernelspec'
{
  "display_name": "Julia 0.6.0",
  "language": "julia",
  "name": "julia-0.6"
}

标签:python,jupyter,jupyter-notebook,julia,jupyter-lab
来源: https://codeday.me/bug/20190527/1162818.html