OS X El Capitan 10.11.6
Spark 2.2.0 (local)
Scala 2.11.8
I'm using Jupyter
via my install of anaconda3
. My understanding is that the latest production release of Toree does not support either Spark 2.0+ or Scala 11. However I have found several references (1, 2) where you can clone incubator-toree
from github
and manually set the version of Spark
.
In my mac terminal, this is the code I've used:
git clone https://github.com/apache/incubator-toree
cd incubator-toree
Then, the line make clean release APACHE_SPARK_VERSION=2.2.0
gives me the following error:
rm -r dist
rm: dist: No such file or directory
make: [clean-dist] Error 1 (ignored)
APACHE_SPARK_VERSION=2.2.0 VERSION=0.2.0.dev1-incubating IS_SNAPSHOT=true sbt clean
/bin/sh: sbt: command not found
make: *** [clean] Error 127
I'm looking for guidance around this error.