I am trying to install fiber nodes for use with my Meteor application on a Windows server that does not have an internet connection. I manually copied fiber files from github to a directory programs/server/node_modules/fibersaccording to the readme package. Now I am trying to run npm install --verbosefrom this directory. I get the following error:
gyp verb get node dir no
gyp verb command install [ 'v0.10.40' ]
gyp verb install input version string "v0.10.40"
gyp verb install installing version: 0.10.40
gyp verb install
gyp verb install version not already installed, continuing with install 0.10.40
gyp verb ensuring nodedir is created C:\Users\xilapko\.node-gyp\0.10.40
gyp verb created nodedir C:\Users\xilapko\.node-gyp\0.10.40
gyp http GET http://nodejs.org/dist/v0.10.40/node-v0.10.40.tar.gz
gyp http 503 http://nodejs.org/dist/v0.10.40/node-v0.10.40.tar.gz
gyp WARN install got an error, rolling back install
gyp verb command remove [ '0.10.40' ]
gyp verb remove using node-gyp dir: C:\Users\xilapko\.node-gyp
gyp verb remove removing target version: 0.10.40
gyp verb remove removing development files for version: 0.10.40
gyp ERR! configure error
gyp ERR! stack Error: 503 status code downloading tarball
gyp ERR! stack at Request.<anonymous> (C:\Program Files\nodejs\node_modules\npm\node_modules\nod
e-gyp\lib\install.js:246:14)
gyp ERR! stack at Request.emit (events.js:117:20)
gyp ERR! stack at Request.onResponse (C:\Program Files\nodejs\node_modules\npm\node_modules\requ
est\request.js:1085:10)
gyp ERR! stack at ClientRequest.g (events.js:180:16)
gyp ERR! stack at ClientRequest.emit (events.js:95:17)
gyp ERR! stack at HTTPParser.parserOnIncomingClient (http.js:1689:21)
gyp ERR! stack at HTTPParser.parserOnHeadersComplete [as onHeadersComplete] (http.js:122:23)
gyp ERR! stack at Socket.socketOnData (http.js:1584:20)
gyp ERR! stack at TCP.onread (net.js:528:27)
gyp ERR! System Windows_NT 6.1.7601
gyp ERR! command "node" "C:\\Program Files\\nodejs\\node_modules\\npm\\node_modules\\node-gyp\\bin\\
node-gyp.js" "rebuild" "--release"
Please note that I already have node v0.10.40 installed on the server ( node -vconfirms this), so I donβt understand why it is trying to download this version again from the Internet.
illya source
share