3

npmで「トリュフ」をインストールしようとしていますが、NodeJSに慣れておらず、npmがインストールしない理由がわかりません。管理者権限でPowershellを試してみるとnpm install -g truffle、数行の出力の後、次のエラーメッセージのブロックが表示されます。

 gyp ERR! build error
 gyp ERR! stack Error: `C:\Program Files (x86)\MSBuild\14.0\bin\msbuild.exe` failed with exit code: 1
 gyp ERR! stack     at ChildProcess.onExit (F:\nodeJS\node_modules\npm\node_modules\node-gyp\lib\build.js:276: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_process.js:200:12)
 gyp ERR! System Windows_NT 10.0.14393
 gyp ERR! command "F:\\nodeJS\\node.exe" "F:\\nodeJS\\node_modules\\npm\\node_modules\\node-gyp\\bin\\node-gyp.js" "rebuild"
 gyp ERR! cwd C:\Users\Max\AppData\Roaming\npm\node_modules\truffle\node_modules\ether-pudding\node_modules\ethereumjs-testrpc\node_modules\ethereumjs-wallet\node_modules\scrypt.js\node_modules\scrypt
 gyp ERR! node -v v4.5.0
 gyp ERR! node-gyp -v v3.4.0
 gyp ERR! not ok\

そして、多くの黄色い線の後、私は最終的にこれを取得します:

 npm ERR! Windows_NT 10.0.14393
 npm ERR! argv "F:\\nodeJS\\node.exe" "F:\\nodeJS\\node_modules\\npm\\bin\\npm-cli.js" "install" "-g" "truffle"
 npm ERR! node v4.5.0
 npm ERR! npm  v2.15.9
 npm ERR! code ELIFECYCLE

 npm ERR! scrypt@6.0.3 install: `node-gyp rebuild`
 npm ERR! Exit status 1
 npm ERR!
 npm ERR! Failed at the scrypt@6.0.3 install script 'node-gyp rebuild'.
 npm ERR! This is most likely a problem with the scrypt 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 information on how to open an issue for this project with:
 npm ERR!     npm bugs scrypt
 npm ERR! Or if that isn't available, you can get their info via:
 npm ERR!
 npm ERR!     npm owner ls scrypt
 npm ERR! There is likely additional logging output above.

 npm ERR! Please include the following file with any support request:
 npm ERR!     F:\eth_truffle\npm-debug.log

その後は何も起こらず、しばらくすると終了します。私が現在いるディレクトリには (単一のログ ファイル以外の) ファイルはなく、キーワード "truffle" も cmd/powershell で見つけることができません。

私が言ったように、私はこれまで NodeJS を使用したことがなく、これが何を意味するのかわかりません。トリュフを実行するにはどうすればよいですか?

4

1 に答える 1

5

インストールが で失敗していnode-gyp rebuildます。この問題の解決策はnode-gyp repoにリストされています。最も速いのは次のとおりです。

npm install --global --production windows-build-tools「オプション 1:管理者特権の PowerShell または CMD.exe (管理者として実行) からMicrosoft の windows-build-tools を使用して、必要なすべてのツールと構成をインストールします。」これにより、Python と Visual Studio が正しくインストールされます。

また、Node 4.5 を使用しています。Truffle Docsによると、推奨バージョンは 5+ です。

于 2016-10-07T14:29:49.380 に答える