This document specifically refers to upgrades from previous versions of macOS to Catalina (10.15). It should be removed from the source repository when Catalina ceases to be the latest macOS version or when future Catalina versions no longer raise these issues.
Upgrading to macOS Catalina may cause normal node-gyp
installations to fail.
Let's first make sure that your Mac is running Catalina:
% sw_vers
ProductName: Mac OS X
ProductVersion: 10.15
BuildVersion: 19A602
If ProductVersion
is less then 10.15
then this document is not for you. Normal install docs for node-gyp
on macOS can be found at https://github.com/nodejs/node-gyp#on-macos
To see if Xcode Command Line Tools
is installed in a way that will work with node-gyp
, run:
/usr/sbin/pkgutil --packages | grep CL
com.apple.pkg.CLTools_Executables
should be listed. If it isn't, this test failed.
/usr/sbin/pkgutil --pkg-info com.apple.pkg.CLTools_Executables
version: 11.0.0
(or later) should be listed. If it isn't, this test failed.
If both tests succeeded, you are done! You should be ready to install node-gyp
.
If either test failed, there is a problem with your Xcode Command Line Tools installation. Continue to Solutions.
There are three ways to install the Xcode libraries node-gyp
needs on macOS. People running Catalina have had success with some but not others in a way that has been unpredictable.
- With the full Xcode (~7.6 GB download) from the
App Store
app. - With the much smaller Xcode Command Line Tools via
xcode-select --install
- With the much smaller Xcode Command Line Tools via manual download. For people running the latest version of Catalina (10.15.2 at the time of this writing), this has worked when the other two solutions haven't.
xcodebuild -version
should showXcode 11.1
or later.- If not, then install/upgrade Xcode from the App Store app.
- Open the Xcode app and...
- Under Preferences > Locations select the tools if their location is empty.
- Allow Xcode app to do an essential install of the most recent compiler tools.
- Once all installations are complete, quit out of Xcode.
sudo xcodebuild -license accept
# If you agree with the licensing terms.softwareupdate -l
# No listing is a good sign.- If Xcode or Tools upgrades are listed, use "Software Upgrade" to install them.
xcode-select -version
# Should returnxcode-select version 2370
or later.xcode-select -print-path
# Should return/Applications/Xcode.app/Contents/Developer
- Try the acid test steps above to see if your Mac is ready.
- If the acid test does not pass then...
sudo xcode-select --reset
# Enter root password. No output is normal.- Repeat step 7 above. Is the path different this time? Repeat the acid test.
- If the acid test has not succeeded, then try
xcode-select --install
- Wait until the install process is complete.
softwareupdate -l
# No listing is a good sign.- If Xcode or Tools upgrades are listed, use "Software Update" to install them.
xcode-select -version
# Should returnxcode-select version 2370
or later.xcode-select -print-path
# Should return/Library/Developer/CommandLineTools
- Try the acid test steps above to see if your Mac is ready.
- If the acid test does not pass then...
sudo xcode-select --reset
# Enter root password. No output is normal.- Repeat step 5 above. Is the path different this time? Repeat the acid test.
- Download the appropriate version of the "Command Line Tools for Xcode" for your version of Catalina from developer.apple.com/download. As of MacOS 10.15.2, that's Command_Line_Tools_for_Xcode_11.3.dmg
- Install the package.
- Run the acid test.
sudo rm -rf $(xcode-select -print-path)
# Enter root password. No output is normal.xcode-select --install
- If the acid test still does not pass then...
npm explore npm -g -- npm install node-gyp@latest
npm explore npm -g -- npm explore npm-lifecycle -- npm install node-gyp@latest
- If the acid test still does not pass then...
- Add a comment to nodejs#1927 so we can improve.
Lessons learned from:
- nodejs#1779
- nodejs#1861
- nodejs#1927 and elsewhere
- Thanks to @rrrix for discovering Solution 3