diff --git a/docs/development/build-instructions-linux.md b/docs/development/build-instructions-linux.md index a6fa99ba3d9..c680566cff9 100644 --- a/docs/development/build-instructions-linux.md +++ b/docs/development/build-instructions-linux.md @@ -8,7 +8,19 @@ On Ubuntu you could install the libraries via: ```bash -$ sudo apt-get install clang libgtk2.0-dev libnotify-dev +$ sudo apt-get install build-essential clang libgtk2.0-dev libnotify-dev gcc-multilib g++-multilib libnss3 libstxt6 +``` + +Latest Node.js could be installed via ppa: + +```bash +$ sudo apt-get install python-software-properties software-properties-common +$ sudo add-apt-repository ppa:chris-lea/node.js +$ sudo apt-get update +$ sudo apt-get install nodejs + +# Update to latest npm +$ sudo npm install npm -g ``` ## Getting the code