-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Description
As far as I can tell, the value of argv
in a kernel.json
corresponding to an IJulia installation should be:
["/path/to/binary/julia", "-i", "--startup-file=yes", "--color=yes", "/path/to/install/location/of/IJulia/kernel.jl", "{connection_file}"]
Comparing this to what's already in envkernel.py
, it seems like adding IJulia as a "known kernel" would amount to something similar to:
KNOWN_KERNELS = {
...
},
'ijulia' : {
'language' : 'julia',
'argv' : ['julia',
'-i',
'--startup-file=yes',
'--color=yes',
'kernel.jl',
'{connection_file}'],
}
}
However, the command seems to require knowing the location of the file kernel.jl
(corresponding seemingly to the install location of IJulia), and the above doesn't seem like it would fit with that.
I wanted to submit a PR along these lines, but I'm not sure how to deal with the issue of the kernel.jl
file's location to make a PR that would actually work.
Metadata
Metadata
Assignees
Labels
No labels