Using Jupyter Laptop for Java

I used the Jupyter laptop quite a bit for my Python projects, but now I need something to work in Java. So I was wondering if I can get Jupyter to work with Java?

After some searches, I think I understand that you can install different kernels for other languages, with a list of kernels here. But I do not know t for Java there. The reason I think this is a working solution for this laptop is showing the Java 9 laptop. Does anyone know how to configure this?

I'm on macOS Sierra, if that matters.

+5
source share
3 answers

When performing a similar search, I found an option that can satisfy your needs:

Yaipa core core https://github.com/scijava/scijava-jupyter-kernel

I haven't run Java against this kernel yet, but it claims to support Java among a number of other scripting languages.

It was created to run ImageJ (the "Java Open Source Image Processing Program"): https://imagej.net/Scripting#Supported_languages

Jupyter Kernel List (link): https://github.com/jupyter/jupyter/wiki/Jupyter-kernels

+2
source

You can use Zeppelin instead. Apache Zeppelin is built on the JVM.

0
source

The core list also includes the Scala kernel, which is based on Java.

-2
source

Source: https://habr.com/ru/post/1260664/


All Articles