## Building from source If you don't have Homebrew, [install it first](http://brew.sh). ### Building Gdex (command line client) Clone the repository to a directory of your choosing: ```shell git clone https://github.com/dexon-foundation/dexon ``` Building `gdex` requires the Go compiler: ```shell brew install go ``` Install libraries required by `gdex` ```shell brew install gmp libssl ``` Finally, build the `gdex` program using the following command. ```shell cd dexon make gdex ``` If you see some errors related to header files of Mac OS system library, install XCode Command Line Tools, and try again. ```shell xcode-select --install ``` You can now run `build/bin/gdex` to start your node.