安裝bcrypt報錯node-gyp rebuild解決方法

npm install bcrypt –save引起了讓人很煩惱的錯誤,整個人心情都不好了。下邊是個人的解決方法:

錯誤一

缺少python環境:

G:\nodejs\moviesite\node_modules\bcrypt>if not defined npm_config_node_gyp (node
 "D:\Program Files\nodejs\node_modules\npm\bin\node-gyp-bin\\..\..\node_modules\
node-gyp\bin\node-gyp.js" rebuild )  else (rebuild)
gyp ERR! configure error
gyp ERR! stack Error: Can't find Python executable "python", you can set the PYT
HON env variable.
gyp ERR! stack     at failNoPython (D:\Program Files\nodejs\node_modules\npm\nod
e_modules\node-gyp\lib\configure.js:103:14)
gyp ERR! stack     at D:\Program Files\nodejs\node_modules\npm\node_modules\node
-gyp\lib\configure.js:64:11
gyp ERR! stack     at FSReqWrap.oncomplete (evalmachine.<anonymous>:95:15)
gyp ERR! System Windows_NT 6.3.9600
gyp ERR! command "node" "D:\\Program Files\\nodejs\\node_modules\\npm\\node_modu
les\\node-gyp\\bin\\node-gyp.js" "rebuild"
gyp ERR! cwd G:\nodejs\moviesite\node_modules\bcrypt
gyp ERR! node -v v0.12.2
gyp ERR! node-gyp -v v1.0.3
gyp ERR! not ok
npm ERR! Windows_NT 6.3.9600
npm ERR! argv "D:\\Program Files\\nodejs\\\\node.exe" "D:\\Program Files\\nodejs
\\node_modules\\npm\\bin\\npm-cli.js" "install" "bcrypt" "--save"
npm ERR! node v0.12.2
npm ERR! npm  v2.7.4
npm ERR! code ELIFECYCLE

npm ERR! [email protected] install: `node-gyp rebuild`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the [email protected] install script 'node-gyp rebuild'.
npm ERR! This is most likely a problem with the bcrypt package,
npm ERR! not with npm itself.
npm ERR! Tell the author that this fails on your system:
npm ERR!     node-gyp rebuild
npm ERR! You can get their info via:
npm ERR!     npm owner ls bcrypt
npm ERR! There is likely additional logging output above.

npm ERR! Please include the following file with any support request:
npm ERR!     G:\nodejs\moviesite\npm-debug.log

安裝python解決,python(v2.7 recommended, v3.x.x is not supported)
下載:http://www.python.org/ftp/python/2.7.3/python-2.7.3.msi

錯誤二

在此解決方案中一次生成一個項目。若要啓用並行生成,請添加“/m”開關。
MSBUILD : error MSB3428: 未能加載 Visual C++ 組件“VCBuild.exe”。要解決此問題,
1) 安裝 .NET Fram
ework 2.0 SDK;2) 安裝 Microsoft Visual Studio 2005;或 3) 如果將該組件安裝到了
其他位置,請將其位置添加到系統
路徑中。 [G:\nodejs\moviesite\node_modules\bcrypt\build\binding.sln]
gyp ERR! build error

如圖:
這裏寫圖片描述

需要安裝Microsoft Visual Studio Express 2013 for Windows Desktop
(版本應該不限制,我安裝的是上邊的版本)

安裝成功,但是出現了警告,警告不影響bcrypt的使用
這裏寫圖片描述


參考文檔:

https://github.com/TooTallNate/node-gyp#installation
http://stackoverflow.com/questions/14573488/error-compiling-bcrypt-node-js
https://github.com/TooTallNate/node-gyp/issues/154

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章