Open
Description
Today we ask users to manually download and handle the installation of Jupyter Enterprise Gateway sample kernelspecs. They are also responsible to modify/update parameters on all installed kernelspecs (e.g. spark_home, etc)
wget https://github.com/jupyter/enterprise_gateway/releases/download/v2.0.0.dev2/jupyter_enterprise_gateway_kernelspecs-2.0.0.dev2.tar.gz
KERNELS_FOLDER=/usr/local/share/jupyter/kernels
tar -zxvf jupyter_enterprise_gateway_kernelspecs-2.0.0.dev2.tar.gz --strip 1 --directory $KERNELS_FOLDER/spark_scala_yarn_cluster/ spark_scala_yarn_cluster/
tar -zxvf jupyter_enterprise_gateway_kernelspecs-2.0.0.dev2.tar.gz --strip 1 --directory $KERNELS_FOLDER/spark_scala_yarn_client/ spark_scala_yarn_client/
A better user experience would be to handle some of these internally, and enable users to just install a given set of kernelspecs, based on the platform being used, and with the ability to update specific configurations. Something like:
jupyter enterprise_gateway install --platform=yarn --spark_home=/usr/local/bin/apache-spark/
The Apache Toree kernel has a similar user experience, and we could use that implementation as an example.