0

In the Process of installing spark 1.0.0 by double clicking the bin/spark-shell windows command script file. Then opened one command prompt file and then immediately closed it self only. Are there any commands required to run this. Could you please tell me step by step process.

Pracede
  • 3,890
  • 14
  • 54
  • 101

1 Answers1

0

First of all, you have to open a terminal. Theorically, you at least have the following on your machine :

  • cmd (for sure)
  • powershell (maybe not, if you're using Vista or less).

From there, you have two options :

  • if you added path_to_spark_folder\bin to your PATH variable (see there for more informations), you can run spark-shell as soon as the console is opened
  • if you didn't, you'll have to go to path_to_spark_folder\bin yourself, using the cd command.

You now can run spark-shell.

Community
  • 1
  • 1
merours
  • 3,856
  • 6
  • 34
  • 66