-1

Windows システムで Angular2 クイック スタート アプリを動作させようとしましたが、「ライト サーバー」では成功しませんでした。

アプリを実行するときに依存関係をインストールした後 (npm install) (npm start)、次のエラーが表示されます。

> Error: spawn cmd ENOENT
[1]     at exports._errnoException (util.js:1007:11)
[1]     at Process.ChildProcess._handle.onexit (internal/child_process.js:182:32                                     )
[1]     at onErrorNT (internal/child_process.js:348:16)
[1]     at _combinedTickCallback (internal/process/next_tick.js:74:11)
[1]     at process._tickCallback (internal/process/next_tick.js:98:9)
[1]
[1] npm
[1]  ERR! Windows_NT 6.1.7601
[1] npm ERR! argv "D:\\Softwares\\node6\\node.exe" "D:\\Softwares\\node6\\node_m                                     odules\\npm\\bin\\npm-cli.js" "run" "lite"
[1] npm ERR! node v6.2.2
[1] npm ERR! npm  v3.9.5
[1] npm ERR! code
[1]  ELIFECYCLE
[1] npm ERR! angular2-starter@0.9.0 lite: `lite-server`
[1] npm ERR! Exit status 1
[1] npm ERR!
[1] npm ERR! Failed at the angular2-starter@0.9.0 lite script 'lite-server'.
[1] npm ERR! Make sure you have the latest version of node.js and npm installed.
[1] npm ERR! If you do, this is most likely a problem with the angular2-starter                                      package,
[1] npm ERR! not with npm itself.
[1] npm ERR! Tell the author that this fails on your system:
[1] npm ERR!     lite-server
[1] npm
[1]  ERR! You can get information on how to open an issue for this project with:
[1] npm ERR!     npm bugs angular2-starter
[1] npm ERR! Or if that isn't available, you can get their info via:
[1] npm ERR!     npm owner ls angular2-starter
[1] npm ERR! There is likely additional logging output above.
[1]
[1] npm ERR! Please include the following file with any support request:
[1] npm ERR!     D:\Dev\Angular2-JumpStart\npm-debug.log
[1] npm run lite exited with code 1

上記のように、私のノード (v6.2.2) と npm (v3.9.5) です。古いバージョンのノードでも試してみましたが、うまくいきませんでした。また、ライトサーバーをグローバルにインストールしました(情報のみ)。

オンラインでいくつかの提案に従って試してみましたが、どれも機能しません。

奇妙なことに、この問題は私の Mac マシンでは持続しません。

私はあなたの支援に感謝します :)

4

2 に答える 2

0

まあ、自分で直しました。パス変数を「C:\Windows\System32\」で更新する必要があります。

問題はエラーメッセージにあります> Error: spawn cmd ENOENT

于 2016-06-28T13:12:16.740 に答える