-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Google Colab integration #24
Comments
The problem with Google Colab is not the verbosity of the installer. That can be handled with ease. There is an additional problem which is that since 2022, Google decided to use ipc (inter process protocol - Unix sockets) instead of standard tcp. Unix sockets were not supported in Java until 16. However, the java library jeromq, which is the java version of zero mq library, which notebook relies on to communicate does not support it. Yet. There are some issues opened on this topic, but one of them looks promising: zeromq/jeromq#927 There is another alternative, that during the installation process on colab host to create some proxies to bind the ipc ports to some tcp ports. This looks ugly, since anyway, there are already some commands for installing jdk and the kernel. This will be postponed for now and give priority to other issues in the meantime. |
Searching more on this path I think there is a way to may implement that, but I have to put some work to test it:
|
You can have a look at this: zeromq/jeromq#998. |
Provide a clean way to integrate RJK into Google Colab.
The text was updated successfully, but these errors were encountered: