# Prerequisites XDS is written in Go and currently only build on Linux host has been validated. So to build XDS binaries you need to install first [Go](https://golang.org/doc/install) version 1.8.1 or higher and some other tools. To build `xds-server` and `xds-agent` you also need to install in addition `nodejs` and `python3` tools. **Ubuntu:** ```bash # Install various tools sudo apt-get install git make npm curl git zip unzip wget # Install Go source /etc/os-release wget -O - "http://keyserver.ubuntu.com/pks/lookup?op=get&search=0x52B59B1571A79DBC054901C0F6BC817356A3D45E" | sudo apt-key add - sudo bash -c "cat >> /etc/apt/sources.list.d/golang.list < Don't forget to open new user session after installing these packages. **All Linux distro:** ```bash # Install nodejs LTS version (only mandatory for xds-server and xds-agent) sudo npm install --global n sudo n lts ``` Angular developers that's plan to modify XDS Dashboard webapp (part of `xds-agent` repo) may also need angular cli tool named `ng` : ```bash # Install angular cli tool (ng) sudo npm install --global n @angular/cli ```