Skip to content
Maxfield Lehman edited this page Aug 29, 2016 · 4 revisions

There are several ways obtain Idris for Mac OS X, when not using Cabal.

Pkg Installer

The first method uses an official pkg file, hosted on the project website.

HomeBrew

The second method requires use of the Homebrew package manager. Homebrew provides a package manager and simple installation system for packages and libraries that don't come standard with OS X. Note, the Homebrew formulas are community contributed and not provided by those developing on Idris.

Source Build

Homebrew offers a source oriented build that will install Idris from source, and will thus pull in compile time dependancies such as Cabal, GHC, and libGMP. Further, to install Idris you will require the installation of Xcode command line tools.

brew update
brew install idris

Cask

An alternate approach to obtaining Idris using Homebrew is to install using cask, which extends Homebrew to install binaries. This version will automatically install the latest release of Idris using the official pkg installer.

brew tap caskroom/cask # If you haven't obtain cask.
brew cask install idris
Clone this wiki locally