Systems-Modeling / SysML-v2-Pilot-Implementation

Proof-of-concept pilot implementation of the SysML v2 textual notation and visualization
GNU Lesser General Public License v3.0
114 stars 23 forks source link

[jupyter kernel] Feature request: add more magic commands #536

Open GorgiAstro opened 4 months ago

GorgiAstro commented 4 months ago

It would be nice to have more magic commands in jupyter for managing a SysML project, for instance:

CThuleHansen commented 3 months ago

You can add a custom server in the kernel.json file: { "argv": [ "java", "-jar", "/home/caemh/miniconda3/envs/sysml/share/jupyter/kernels/sysml/jupyter-sysml-kernel-0.38.0-all.jar", "{connection_file}" ], "display_name": "SysML", "env": { "ISYSML_API_BASE_PATH": "http://localhost:9000" }, "interrupt_mode": "message", "language": "sysml" }

Change the ISYSML_API_BASE_PATH. But I agree, it could be easier :)