Skip to content

Latest commit

 

History

History
49 lines (28 loc) · 1.1 KB

macos.rst

File metadata and controls

49 lines (28 loc) · 1.1 KB

macOS system prerequisites

To build LSST software, macOS systems need:

  1. Xcode <source-install-mac-prereqs-xcode>, or command line tools.
  2. cmake <source-install-mac-prereqs-cmake>.

Note

macOS versions 10.9 and earlier have not been tested recently and may not work.

Xcode

You will need to install developer tools, which we recommend you obtain with Apple's Xcode command line tools package. To do this, run from the command line (e.g. Terminal.app or similar):

xcode-select --install

You can verify where the tools are installed by running:

xcode-select -p

cmake

cmake can be installed through a package manager like Homebrew:

brew install cmake

Alternatively, Anaconda users can install cmake with conda:

conda install cmake