The steps for macOS are as follows (taken from https://developer.ibm.com/hadoop/2016/05/04/install-jupyter-notebook-spark):Â
I could not get the steps for using the Scala kernel to work on a Windows 10 machine.
- Install git using the following command:
yum install git
- Copy the scala package locally:
git clone https://github.com/alexarchambault/jupyter-scala.git
- Install the sbt build tool by running:
sudo yum install sbt
-  Move the jupyter-scala directory to the scala package:
cd jupyter-scala
- Build the package:
sbt cli/packArchive
- Â To launch Scala shell, use the following command:
./jupyter-scala
- Â Check the kernels installed by running this command (you should now see Scala in the list):
jupyter kernelspec list
- Launch the Jupyter Notebook:
jupyter notebook
- You can now choose to use...