Running Jupyter Notebook from JSL
I'd like to run a Jupyter notebook from a JSL script. I tried the following but without success:
//================================================================
// Open Jupyter notebook
//
RunProgram(
Executable( "C:/Users/Owner/Anaconda3/Scripts/jupyter.exe " ),
Options(
{"notebook", "C:/temp/meteorites.ipynb"}
),
Read Function( "text" ),
);
//===============================================...