How do I change the octave-mode
to use the command jupyter kernel --kernel octave
as the default octave shell?
Edit: Here's a list of things I tried (adding them here as suggested in the comments):
- Changed the variable
inferior-octave-program
using:
(eval-after-load 'octave (setq inferior-octave-program "jupyter console --kernel octave"))
This however gives the error: Searching for program: No such file or directory, jupyter console --kernel octave
. And yes, I do have jupyter and octave_kernel installed and can launch it from terminal with jupyter console --kernel octave
.