How to install apache-spark 2.3.3 with homebrew on Mac - apache-spark

$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?

Type
brew tap eddies/spark-tap
Then install the specific version
brew install apache-spark#2.3.3

brew tap eddies/spark-tap
brew install apache-spark#2.3.2

Related

How to Install Node version 14.18.2 Using Homebrew

Using homebrew I am able to install node v12, v14, v16 and v17. But it seems to only install the latest stable version of each.
I am using an M1 Mac - any ideas on how to install node version 14.18.2 using homebrew?
Instead of brew, you can use nvm to install and switch between different version of node.js on you Mac OSX :
https://github.com/nvm-sh/nvm

how to install python 3.9.6 using homebrew on Mac m1

Im new to programming and stuff and was looking to install python 3.9.6 using home-brew. To do that would I just have to type in brew install python#3.9 into the terminal, or is there some other way? Thanks!
You can't ensure a specific version 3.9.6 with brew package python#3.9. Homebrew is a package manage designed to get latest pacakge. python#3.9 will be kept updating to the latest patch version 3.9.x.
If you REALLY to stick with specific python version, choose conda (miniconda is preferred) or pyenv.

Unable to install robotframework-ride in ubuntu

I am trying to install robotframwrok-ride in ubuntu18.04 but getting "could not find a version satisfies the requirement Pywin32" error.
please help me to get the ride installed.
That problem is fixed in the next release, which is 1.7.4.
You can install the Beta version by following the instructions in the release notes, https://github.com/robotframework/RIDE/blob/master/doc/releasenotes/ride-1.7.4.rst
You can also install the current development version, which includes more fixes.
pip install -U https://github.com/robotframework/RIDE/archive/master.zip
(edit)
The version 1.7.4 has been released on December the 24th, 2019.
You can install (after having installed wxPython) with:
sudo pip install robotframework-ride

How do I upgrade from a previous version of websauna?

I have a websauna project which I created using this command:
pip install -e "git+https://github.com/websauna/websauna.git#master#egg=websauna[celery,utils,notebook]"
this is found in the documentation at: https://websauna.org/docs/tutorials/gettingstarted/tutorial_02.html
This is the development version on github, and I recall it was alpha4. How do I upgrade this to the latest version(presumably at alpha5 as of this writing)?
If you want to install the latest release from the PyPi do:
pip uninstall websauna
pip install -U "websauna[celery,utils,notebook]"
If you want to follow the latest Github master branch:
pip uninstall websauna
pip install e "git+https://github.com/websauna/websauna.git#master#egg=websauna[celery,utils,notebook]"
Uninstall step might or might not be required depending on if you are switching between pip PyPi package install and pip -e.

Install python package from GitHub into Anaconda on Linux Ubuntu

I need to install this package located on GitHub into Anaconda enviroment. How can I achieve this?
You can install the latest version from github with pip using
pip install https://github.com/<user-name>/<repo-name>/tarball/<branch-name>
in your case this would be:
pip install https://github.com/lucjon/Py-StackExchange/tarball/master

Resources