Embedding the REPL

How can I embed the Julia REPL into a C++ executable such that I can connect to it remotely, e.g. from a notebook?

I know about the C++ interop packages but haven’t found anything on the REPL.

Thanks, Joel
1 Like

You can try using RemoteREPL. With it, you can create a REPL server in your C++ app, and connect to it from a regular Julia REPL.

1 Like

There is a Jupyter kernel:

2 Likes