Skip to content

Instantly share code, notes, and snippets.

@webrgp
Created February 17, 2025 19:48
Show Gist options
  • Save webrgp/ed8cb6bf9200d917e6e59c008980ae35 to your computer and use it in GitHub Desktop.
Save webrgp/ed8cb6bf9200d917e6e59c008980ae35 to your computer and use it in GitHub Desktop.
Using NodeJs 14 with Mac Silicon (M1)

Using NodeJs 14 with Mac Silicon (M1)

Workaround to get NodeJs 14 to work with Mac Silicon. Apple provides Rosetta, a translation app that allows applications that are built for Intel Chip (or previous generation Mac) to run under Apple Silicon.

Installing Rosetta

/usr/sbin/softwareupdate --install-rosetta --agree-to-license

Installing Node 14 (NVM)

# Switch to i386
arch -x86_64 zsh

# Confirm (should print "i386"
arch

# Install node
nvm install 14
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment