1
OS X El Capitan 10.11.6
Spark 2.2.0 (local)
Scala 2.11.8

我正在Jupyter通过我安装的anaconda3. 我的理解是,Toree 的最新生产版本不支持 Spark 2.0+ 或 Scala 11。但是我发现了几个参考(1、2 ,您可以从中克隆incubator-toreegithub手动设置Spark.

在我的 mac 终端中,这是我使用的代码:

git clone https://github.com/apache/incubator-toree
cd incubator-toree

然后,该行make clean release APACHE_SPARK_VERSION=2.2.0给了我以下错误:

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

我正在寻找有关此错误的指导。

4

1 回答 1

3

通过运行以下命令安装开发人员快照

pip install https://dist.apache.org/repos/dist/dev/incubator/toree/0.2.0/snapshots/dev1/toree-pip/toree-0.2.0.dev1.tar.gz

此版本支持 spark-2.2.0

于 2017-10-30T04:32:02.310 回答