Rohan Singh's Weblog

Writing about software, data science, and things I learn along the way.

Brew Old Packages

tools

Install old version using Homebrew

The example follows installation of R package.

The current version on homebrew is 4.3.1. Need to install version 4.2.2

  1. Create a local tap
brew tap-new $USER/local-R
  1. Extract the required version from homebrew
brew extract --version=4.2.2 R rsingh/local-R
  1. Install the required version
brew install R@4.2.2

← Back to TIL