We are having problems running "npm install" on our project. A certain file cannot be found :
fatal error C1083: Cannot open include file: 'windows.h'
It appears to be coming from the node-gyp module :
c:Program
Files
odejs
ode_modules
pm
ode_modules
ode-gypsrcwin_delay_lo
ad_hook.c(13):
fatal error C1083: Cannot open include file: 'windows.h': No suc h
file or directory
[D:
gs-frontend-next
ode_modulesrowser-sync
ode_module
ssocket.io
ode_modulesengine.io
ode_modulesws
ode_modulesufferutiluil
dinding.sln]
This node-gyp seems to be a never ending source of pain for us. At first it complained that it needed python, so we installed that. Then it complained that it needed VCBuild, which we installed (using .NET 2.0 SDK), now we have this error. It's almost as if the errors are getting more and more obscure, and it feels like we are going down some wrong path.
The strange thing is, that other people in our team have zero problems running the npm-install.
The full error looks like this :
c:Program
Files
odejs
ode_modules
pm
ode_modules
ode-gypsrcwin_delay_lo
ad_hook.c(13):
fatal error C1083: Cannot open include file: 'windows.h': No suc h
file or directory
[D:
gs-frontend-next
ode_modulesrowser-sync
ode_module
ssocket.io
ode_modulesengine.io
ode_modulesws
ode_modulesufferutiluil
dinding.sln]
gyp ERR! build error gyp ERR! stack Error:
C:WindowsMicrosoft.NETFrameworkv4.0.30319msbuild.exe
failed
with exit code: 1 stack at ChildProcess.onExit (C:Program
Files
odejs
ode_modules
pm
ode
_modules
ode-gyplibuild.js:270:23) gyp ERR! stack at emitTwo (events.js:87:13) gyp ERR! stack at ChildProcess.emit
(events.js:172:7) gyp ERR! stack at
Process.ChildProcess._handle.onexit (internal/child_proces
s.js:200:12) gyp ERR! System Windows_NT 6.1.7601 gyp ERR! command
"C:Program Files
odejs
ode.exe" "C:Program Files
odej
s
ode_modules
pm
ode_modules
ode-gypin
ode-gyp.js"
"rebuild" gyp ERR! cwd
D:
gs-frontend-next
ode_modulesrowser-sync
ode_modulessocket.
io
ode_modulesengine.io
ode_modulesws
ode_modulesufferutil gyp
ERR! node -v v4.2.2 gyp ERR! node-gyp -v v3.0.3 gyp ERR! not ok npm
WARN optional dep failed, continuing [email protected]
[email protected] postinstall D:
gs-frontend-next
ode_modulesgulp-imagemin
od
e_modulesimagemin
ode_modulesimagemin-gifsicle
ode_modulesgifsicle
node lib/install.js
Out pacakge.json looks like this :
{
"name": "Fast-nunjucks",
"version": "0.0.1",
"description": "A simple boilerplate using nunjucks as a template engine",
"main": "index.js",
"scripts": {
"test": "echo "Error: no test specified" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/willianjusten/Fast-nunjucks.git"
},
"keywords": [
"nunjucks",
"node",
"gulp",
"stylus"
],
"author": "Willian Justen de Vasconcellos",
"license": "ISC",
"bugs": {
"url": "https://github.com/willianjusten/Fast-nunjucks/issues"
},
"homepage": "https://github.com/willianjusten/Fast-nunjucks",
"devDependencies": {
"autoprefixer-stylus": "^0.7.1",
"browser-sync": "^2.8.2",
"gulp": "^3.9.0",
"gulp-cache": "^0.3.0",
"gulp-concat": "^2.6.0",
"gulp-if": "^1.2.5",
"gulp-imagemin": "^2.3.0",
"gulp-minify-html": "^1.0.4",
"gulp-nunjucks-html": "^1.2.2",
"gulp-order": "^1.1.1",
"gulp-plumber": "^1.0.1",
"gulp-stylus": "^2.0.6",
"gulp-uglify": "^1.2.0",
"gulp-util": "^3.0.6",
"jeet": "^6.1.2",
"kouto-swiss": "^0.11.13",
"minimist": "^1.1.3",
"rupture": "^0.6.1"
},
"dependencies": {
"gulp-install": "^0.6.0"
}
}
See Question&Answers more detail:
os