Skip to content
When a new day begins,
dare to smile gratefully
Steve Maraboli

Fix developer path after upgrade to MacOS Catalina

After MacOS system upgrade to Catalina, on my computer git did not work anymore. If you happened the same, the following steps resolve it for me!

Running any of git commands, you would probably got this error

xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools), missing xcrun at: /Library/Developer/CommandLineTools/usr/bin/xcrun

To fix it, you had to run

xcode-select --install

The "xcode-select" command requires the command line developer tools.

A prompt will appear asking you to install it now.

xcode-prompt

When installation is completed, git should work as expected! 😎

📚 More info

Invalid active developer path

View on GitHub

Comment on DEV.to or Hashnode

Take me to the next post!