2.1 Getting Started

Installation

🐧 Linux :

🍎 MacOS :

🪟 Windows :

Les conseils de Raysan5

English version 🇬🇧

Installation

🐧 Linux:

  1. Install GCC using sudo apt-get install gcc
  2. Install an IDE, you can use any app.

🍎 MacOS:

  1. Install Xcode: Xcode is a free IDE developed by Apple that includes GCC. You can download it from the Mac App Store.
  2. Install the Command Line Tools: Once Xcode is installed, open it & go to Xcode > Preferences > Locations. Click on the Install button next to Command Line Tools.
  3. Install GCC: Open a terminal & run gcc --version to check if GCC is installed. If not, run xcode-select --install to install the GCC compiler.

🪟 Windows:

Raysan5's advice