Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 874 Bytes

File metadata and controls

20 lines (14 loc) · 874 Bytes

Installing the Xcode command line tools

Apple has a development tool called Xcode which is used to develop native apps for macOS, iOS, and iPadOS. We don't need Xcode itself, but we do need the Xcode command line tools, which includes a C compiler and some other tools.

Type or copy and paste this command exactly like this into the terminal and press enter:

xcode-select --install

This should trigger a dialog box to appear asking if you want to install the command line tools, click Ok and wait for the tools to finish installing.

Once this is finished, move on to Installing homebrew