I\'m trying to install Spark on my Windows desktop. Everything should work fine, but I get an error \"\'cmd\' is not recognized as an internal or external command... \"
All my variables were OK, so I decided to debug the scripts and I found in "spark-class2.cmd" and put another pair of quotation marks in "%RUNNERS%".
BEFORE
"%RUNNER%" -Xmx128m -cp "%LAUNCH_CLASSPATH%" ....
AFTER
""%RUNNER%"" -Xmx128m -cp "%LAUNCH_CLASSPATH%" ....