CISC 3142
Programming Paradigms in C++
Fall 2025
CLion Installation — Mac


From zero → a working CLion C++ on the Mac

Install Apple Command Line Tools (CLT)

This is a minimal installation of a working C/C++ development environment:

CLT does NOT include an IDE (editor, project manager, etc).

xcode-select --install
A popup should appear prompting you to install Command Line Tools.

Verify

xcode-select -p          # should print a path under /Library/Developer/CommandLineTools
clang --version          # Apple clang
clang++ --version

If you've installed XCode as well, xcode-select -p shows Xcode instead of CLT and you prefer CLT:
sudo xcode-select --switch /Library/Developer/CommandLineTools

Install CLion

Launch CLion