如何通过Homebrew安装Spark在Mac OS X上安装Apache Toree?

时间:2017-02-23 05:02:28

标签: apache-spark apache-spark-2.0 apache-toree

Apache Toree正在寻找spark主目录(默认为" / usr / local / spark",但是当由于通过Homebrew安装了spark而无法找到目录时,它抛出异常。

jupyter toree install --spark_home /usr/local/Cellar/apache-spark/2.1.0/libexec
/usr/local/Cellar/apache-spark/2.1.0/libexec/

当通过自制软件安装火花时火花在哪里?

2 个答案:

答案 0 :(得分:2)

Apache Toree正在寻找通过自制软件安装spark的目录位于/ usr / local / Cellar:

{{1}}

它特别想要" libexec"它可以进入" python / lib"的目录。子目录。

答案 1 :(得分:1)

如果这不起作用,您可能还需要传入--user标记。

jupyter toree install --user --spark_home /usr/local/Cellar/apache-spark/2.2.0/libexec

有点像来自this github issue, this jupyter documentation,this other stack question.