的Windows安裝或沒有,當我嘗試運行npm install
,它表明:Git是不是在PATH
[email protected] postinstall E:\mean
node node_modules/grunt-cli/bin/grunt install
Running "bower:install" (bower) task
Fatal error : git is not installed or not in the PATH
npm ERR! weird error 1
npm ERR! not ok code 0
問題是什麼?如何解決它?
的progrect是https://github.com/linnovate/mean
cmd提示符必須在PATH更新後重新啓動。 –
此外,如果全局PATH變量中的任何路徑都在「引號」中,則它可能無法在Windows上的git bash中工作。我對nodejs和npm有這個問題。他們在我的PATH中並且在窗口命令提示符下工作得很好,但是在我刪除圍繞他們路徑的引號之前不會在git bash中。你可以在git bash中輸入「echo $ PATH」來檢查。 – Triad
感謝@Triad並考慮將您的評論升級爲答案;) – malarres