With the latest version of IPython kernel can be registered by placing the kernel.json file in ~/.ipython/kernels/<kernel-name>/ .
I'm currently trying to add the julia and R core, and I wonder who is responsible for creating and maintaining these kernel.json files.
I am currently googled and created after kernel.json for julia manually:
{ "display_name": "Julia", "language": "julia", "argv": [ "julia", "-i", "-F", "/User/<user>/.julia/v0.3/IJulia/src/kernel.jl", "{connection_file}" ], "codemirror_mode":"julia" }
While this works, due to the hard path to kernel.jl I will have to adapt kernel.json for every major julia update.
Should I take care of creating and maintaining these files? Or are they part of a kernel implementation or other third-party packages?
source share