From 4178f7004af8c90afd4ada76983341293c5761c1 Mon Sep 17 00:00:00 2001 From: "Gurin, Sebastian" Date: Mon, 9 Apr 2018 02:51:27 -0300 Subject: [PATCH 1/2] npm install windows users tip --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index eba506513..ecd7f5d94 100644 --- a/README.md +++ b/README.md @@ -60,6 +60,12 @@ npm install npm run tsc ``` +`npm install` requires some tools to be present in the system like Python and C++ compiler. Windows users can easily install them by running the following command in PowerShell as administrator. For more information see https://github.com/felixrieseberg/windows-build-tools: + +```sh +npm install --global --production windows-build-tools +``` + ## Debugging On Windows, you can show the winpty agent console window by adding the environment variable `WINPTY_SHOW_CONSOLE=1` to the pty's environment. See https://github.com/rprichard/winpty#debugging-winpty for more information. From 7414d4cfe9e80806f62a30ed883afea87efc488c Mon Sep 17 00:00:00 2001 From: Daniel Imms Date: Mon, 9 Apr 2018 10:13:20 -0700 Subject: [PATCH 2/2] Add heading --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index ecd7f5d94..75f99a718 100644 --- a/README.md +++ b/README.md @@ -60,6 +60,8 @@ npm install npm run tsc ``` +### Dependencies on Windows + `npm install` requires some tools to be present in the system like Python and C++ compiler. Windows users can easily install them by running the following command in PowerShell as administrator. For more information see https://github.com/felixrieseberg/windows-build-tools: ```sh