Update Installing Xcode and Setting up Command Line Tools authored by Andrew Januszko's avatar Andrew Januszko
sada # What is Xcode?
\ No newline at end of file
- Xcode is an Apple developed IDE primarily used for developing applications on Apple platforms. It is a requirement for signing application builds and pushing app builds to the App Store.
- If you need to install Xcode, you can find it on the [macOS App Store](https://apps.apple.com/us/app/xcode/id497799835?mt=12).
# How do I set it up?
- Once Xcode is installed, run the application. It should ask you to install command-line tools, click install.
- If it does not prompt you to install command-line tools, run the following command:
```bash
xcode-select --install
```
- This command forces the prompt to show up so you can install the tools necessary for development.
\ No newline at end of file