问题描述
起初我有一个虚拟机,我通过Ubuntu的访问,这VM也是Ubuntu的14.04。我需要安装Apache尽快星火,但我找不到任何可以帮助我或者给我的地方是最好的解释引用。
我试过一次,以我的本地机器的Ubuntu 14.04上安装它,但它失败了,但事情是,我不希望在集群上安装它。
任何帮助,请???
At first I have a VM to which I access via ubuntu, and this VM is also Ubuntu 14.04. I need to install Apache Spark as soon as possible, but I can not find anything which can help me or give me references where it's best explained.I tried once to install it on my local machine Ubuntu 14.04 but it failed , but the thing is that I don't want to install it on a cluster.Any help please???
推荐答案
您可以安装并开始使用火花三个简单的步骤
You can install and start using spark in three easy steps:
- 从
-
导航到从终端下载的文件夹,然后运行以下命令:
- Download latest version of Spark from here.
Navigate to the downloaded folder from terminal and run the following command:
tar -xvf spark-x.x.x.tgz //replace x's with your version
导航到解压的文件夹,然后运行以下命令之一:
Navigate to the extracted folder and run one of the following command:
./bin/spark-shell // for interactive scala shell
./bin/pyspark // for interactive python shell
您现在已经准备好
这篇关于在Ubuntu 14.04安装Apache星火的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!