## Building from source ### Building Gdex (command line client) Clone the repository to a directory of your choosing: ```shell git clone https://github.com/dexon-foundation/dexon ``` Install latest distribution of Go (v1.10) if you don't have it already: [See instructions](https://github.com/dexon-foundation/wiki/wiki/Installing-Go#ubuntu) Building `gdex` requires Go and C compilers to be installed: ```shell sudo apt-get install -y build-essential golang ``` Install libraries required by `gdex` ```shell sudo apt-get install -y libssl-dev libgmp-dev ``` Finally, build the `gdex` program using the following command. ```shell cd dexon make gdex ``` You can now run `build/bin/gdex` to start your node.