Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to install apache-spark 2.3.3 with homebrew on Mac

$brew install apache-spark only installs the most recent version of spark (2.4) and $brew search apache-spark does not give any other options. Is there a way to install an older version of spark with homebrew?

like image 545
b1223d Avatar asked Sep 13 '25 23:09

b1223d


1 Answers

Type

brew tap eddies/spark-tap

Then install the specific version

brew install [email protected]
like image 77
Max.Futerman Avatar answered Sep 16 '25 22:09

Max.Futerman