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.
Asked
Active
Viewed 820 times
0
-
1Try to run the script file from the command prompt – Santhosh Jul 10 '14 at 06:18
1 Answers
1
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 yourPATH
variable (see there for more informations), you can runspark-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 thecd
command.
You now can run spark-shell
.