Oliver Nassar

Install svn on macOS (Apple Silicon / ARM)

February 01, 2022

Had to update a WordPress plugin and in the process, realized that my Mac (macOS 12.0.1 Monterey) didn't have svn installed.

I couldn't find a binary to install, so I went the brew route. Below you'll find the steps:

cd ~/
mkdir tmp/
cd tmp/
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
brew install subversion
cd ../
rm -rf tmp/

Good luck :)


Acknowledgments