Skip to content

Instantly share code, notes, and snippets.

@onmomo
Created April 28, 2021 14:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save onmomo/88ef839b05e3b72895b9a299a1a1f3c9 to your computer and use it in GitHub Desktop.
Save onmomo/88ef839b05e3b72895b9a299a1a1f3c9 to your computer and use it in GitHub Desktop.
[Reinstall xcode] fix gyp ERR! #terminal #macos
# remove xcode
sudo rm -rf $(xcode-select -print-path)
# trigger cmdline tools install again
xcode-select --install
# combined
sudo rm -rf $(xcode-select -print-path) && xcode-select --install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment