From 2e9b26b862e77d55199b4ef9c9fdc4da0b686cda Mon Sep 17 00:00:00 2001 From: TaylorLee Date: Fri, 30 Jun 2017 01:59:21 -0500 Subject: [PATCH 1/4] Python info needs own header --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 5ab6b5dbda..781c0a06c3 100644 --- a/README.md +++ b/README.md @@ -66,6 +66,8 @@ Install tools and configuration manually: If the above steps didn't work for you, please visit [Microsoft's Node.js Guidelines for Windows](https://github.com/Microsoft/nodejs-guidelines/blob/master/windows-environment.md#compiling-native-addon-modules) for additional tips. +## Configuring Python Dependency + If you have multiple Python versions installed, you can identify which Python version `node-gyp` uses by setting the '--python' variable: From b9ad34bb7fedb561e87257d2c93a010d67f46299 Mon Sep 17 00:00:00 2001 From: TaylorLee Date: Fri, 30 Jun 2017 02:10:21 -0500 Subject: [PATCH 2/4] Smaller header font --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 781c0a06c3..fe3a91e1ed 100644 --- a/README.md +++ b/README.md @@ -66,7 +66,7 @@ Install tools and configuration manually: If the above steps didn't work for you, please visit [Microsoft's Node.js Guidelines for Windows](https://github.com/Microsoft/nodejs-guidelines/blob/master/windows-environment.md#compiling-native-addon-modules) for additional tips. -## Configuring Python Dependency +### Configuring Python Dependency If you have multiple Python versions installed, you can identify which Python version `node-gyp` uses by setting the '--python' variable: From d4b25a4a46bbdc68efd301d1a40c40ccfe9dbad1 Mon Sep 17 00:00:00 2001 From: TaylorLee Date: Fri, 30 Jun 2017 05:43:23 -0500 Subject: [PATCH 3/4] Fixed quotes around '--python' --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fe3a91e1ed..34957afd00 100644 --- a/README.md +++ b/README.md @@ -69,7 +69,7 @@ Install tools and configuration manually: ### Configuring Python Dependency If you have multiple Python versions installed, you can identify which Python -version `node-gyp` uses by setting the '--python' variable: +version `node-gyp` uses by setting the "--python" variable: ``` bash $ node-gyp --python /path/to/python2.7 From 39cc0f58cf38e865591eae88ca19f2826f06c2b5 Mon Sep 17 00:00:00 2001 From: TaylorLee Date: Fri, 30 Jun 2017 14:18:13 -0500 Subject: [PATCH 4/4] Correct quote usage --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 34957afd00..5dc9740cc8 100644 --- a/README.md +++ b/README.md @@ -69,7 +69,7 @@ Install tools and configuration manually: ### Configuring Python Dependency If you have multiple Python versions installed, you can identify which Python -version `node-gyp` uses by setting the "--python" variable: +version `node-gyp` uses by setting the `--python` variable: ``` bash $ node-gyp --python /path/to/python2.7