I'm using the package PackageCompiler.jl to create an image that already has some packages precompiled, such as Plots.jl. This speeds up a lot the process of starting a new notebook. The only thing I need to do is run
julia --sysimage ~/JuliaImages/sys_plots.so
Now, I want to add a new kernel to Jupyter that runs Julia with this additional flag. I know that to install different versions of julia kernels, one just needs to run the older Julia version and install the IJulia package. But this does not work for this case where I want to specify a flag.
Does anyone knows how to add this "custom" Julia kernel?