We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d9a5cfd commit 8e48426Copy full SHA for 8e48426
distrib/run_kotlin_kernel/run_kernel.py
@@ -39,7 +39,7 @@ def run_kernel_impl(connection_file: str, jar_args_file: str = None, executables
39
class_path_arg = os.pathsep.join([os.path.join(jars_dir, jar_name) for jar_name in cp])
40
main_jar_path = os.path.join(jars_dir, main_jar)
41
42
- java_home = os.getenv("JAVA_HOME")
+ java_home = os.getenv("KOTLIN_JUPYTER_JAVA_HOME") or os.getenv("JAVA_HOME")
43
44
if java_home is None:
45
java = "java"
0 commit comments