Skip to content

Up and running: OS X

Mike Goldin edited this page May 31, 2015 · 1 revision

Up and running with Ethereum and AlethZero on OS X.

  1. Install homebrew (a package manager) by entering this command in Terminal (or your preferred command line client).

    $ ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
    
  2. Run these commands (to make sure Homebrew itself is up-to-date):

    $ brew update
    $ brew upgrade --all
    
  3. Now these (to install Ethereum and AlethZero):

    $ brew tap ethereum/ethereum
    $ brew install cpp-ethereum —-with-gui
    $ brew linkapps cpp-ethereum
    

Hint: the install step might take a very long time if qt5 isn’t already installed. Like, hours. Maybe leave your computer on overnight.

AlethZero should now be available in your Applications folder (and typing “eth” in the command line will start the cpp-ethereum command line interface).

In the future, you can make sure you're up-to-date with the stable branch by repeating step 2.