From d38bc95f048a51b8889c23e4e41cc4e0a1e89ee1 Mon Sep 17 00:00:00 2001 From: Cheng Zhao Date: Thu, 15 May 2014 14:12:40 +0800 Subject: [PATCH] :memo: More instructions on installing under Ubuntu, closes #315. --- docs/development/build-instructions-linux.md | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/docs/development/build-instructions-linux.md b/docs/development/build-instructions-linux.md index a6fa99ba3..c680566cf 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