已安装Git并在路径中。
平台:Red Hat Enterprise Linux 5.8。
>which git
/usr/local/bin/git
然而鲍尔却找不到它:
bower angular#1.0.6 ENOGIT git is not installed or not in the PATH
建议的解决方案是什么?
已安装Git并在路径中。
平台:Red Hat Enterprise Linux 5.8。
>which git
/usr/local/bin/git
然而鲍尔却找不到它:
bower angular#1.0.6 ENOGIT git is not installed or not in the PATH
建议的解决方案是什么?
当前回答
NPM安装从git bash为我工作。 重启电脑后。
其他回答
当你运行git安装时,你可能没有选择:
从Windows命令提示使用Git
安装过程中。
重新运行git install,并选择该选项。
只需使用Git Bash,而不是node.js或命令提示符
以安装ReactJS为例,打开Git Bash后,执行以下命令安装react:
bower install --react
在Linux中:
如果你没有安装git,请使用:
sudo apt-get update
sudo apt-get install git
使用命令,你将知道目录在哪里,然后添加路径,如果它不在那个环境变量。
在Windows上,您可以尝试在命令提示符处设置路径:
set PATH=%PATH%;C:\Program Files\Git\bin;
只需使用Git Bash而不是cmd。