From cd79d121eb13eca027b2cc4ff2e67edf23b7e717 Mon Sep 17 00:00:00 2001 From: zicrox Date: Tue, 29 Nov 2016 12:36:30 +0100 Subject: [PATCH] Update README.md with docker details in "Installation" section MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Otherwise node-gyp fails like this: http://stackoverflow.com/questions/14772508/npm-failed-to-install-time-with-make-not-found-error It´s posible this build-essential package was required in another scenario. --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index 4d03d23..5644257 100644 --- a/README.md +++ b/README.md @@ -401,6 +401,17 @@ Then: ``` brew install pkgconfig ``` + + * Docker: to run `node-gyp` properly is required `build-essential` in Devian distros or `Development Tools` in CentOS + + + sudo apt-get install build-essential + + or + + sudo yum groupinstall "Development Tools" + +