2015-12-01 52 views
0

我正在使用安裝了git和節點的windows 10。運行:'錯誤:未找到:git'代碼:'ENOGIT'安裝bower時

npm install -g bower 

resulsts在

npm WARN addRemoteGit Error: not found: git 
npm WARN addRemoteGit  at F (C:\Program Files\nodejs\node_modules\npm\node_modules\which\which.js:78:19) 
npm WARN addRemoteGit sheerun/fs-write-stream-atomic#v1.0.4-fix resetting remote C:\Users\Muhammet Akkus\AppData\Roaming\npm-cache\_git-remotes\git-github-com-sheerun-fs-write-stream-atomic-git-v1-0-4-fix-7baaaaefc7e8a6f2fd1f4fdbc8e4b6e7 because of error: { [Error: not found: git] code: 'ENOGIT' } 
npm ERR! git clone --template=C:\Users\Muhammet Akkus\AppData\Roaming\npm-cache\_git-remotes\_templates --mirror git://github.com/sheerun/fs-write-stream-atomic.git C:\Users\Muhammet Akkus\AppData\Roaming\npm-cache\_git-remotes\git-github-com-sheerun-fs-write-stream-atomic-git-v1-0-4-fix-7baaaaefc7e8a6f2fd1f4fdbc8e4b6e7: undefined 

....

回答

1

安裝Git和NPM運行安裝從混帳的bash爲我工作。確保你在正確的目錄中。

多參考這裏解決 git is not installed or not in the PATH

+0

雖然此鏈接可以回答這個問題,最好是在這裏有答案的主要部件,並提供鏈接以供參考。如果鏈接頁面更改,則僅鏈接答案可能會失效。 –

3

你應該嘗試以root身份運行此命令。在Windows中,開始你的CommandLine爲管理員和在Mac或Linux上使用

sudo npm install -g bower 
+0

不鼓勵使用sudo和節點模塊。 –

相關問題