Bower: ENOGIT Git is not installed or not in the PATH

匿名 (未验证) 提交于 2019-12-03 02:13:02

问题:

Git is installed and is in the path.

Platform: Red Hat Enterprise Linux 5.8.

>which git /usr/local/bin/git 

Yet bower can't find it:

bower angular#1.0.6  ENOGIT git is not installed or not in the PATH 

What is the recommended work-around?

回答1:

Adding Git to Windows 7/8/8.1 Path

Note: You must have msysgit installed on your machine. Also, the path to my Git installation is "C:\Program Files (x86)\Git". Yours might be different. Please check where yours is before continuing.

Open the Windows Environment Variables/Path Window.

  1. Right-click on My Computer -> Properties
  2. Click Advanced System Settings link from the left side column
  3. Click Environment Variables in the bottom of the window
  4. Then under System Variables look for the path variable and click edit
  5. Add the pwd to Git's binary and cmd at the end of the string like this:

    ;%PROGRAMFILES(x86)%\Git\bin;%PROGRAMFILES(x86)%\Git\cmd 

Now test it out in PowerShell. Type git and see if it recognizes the command.

Source: Adding Git to Windows 7 Path



回答2:

Just use the Git Bash instead of cmd.



回答3:

Run the following command at your node.js command prompt where "<git path>" is the path to your git bin folder:

set PATH=%PATH%;<git path>; 

So, like this:

set PATH=%PATH%;C:\Program Files\Git\bin; 

Or this: (Notice the (x86) )

set PATH=%PATH%;C:\Program Files (x86)\Git\bin; 

This will add git to your path variables. Be sure you type it correctly or you could possibly delete your path vars which would be bad.



回答4:

Make sure you installed Git with the second or third option selected from the list. It will penetrate the Git command to cmd by modifying PATH automatically ;)



回答5:

I had the same error in Windows. Adding git to the path fixed the issue.

G:\Dropbox\Development\xampp\htdocs.penfolds.git\penfolds-atg-development>bower install bower bootstrap#~3.0.0          ENOGIT git is not installed or not in the PATH  G:\>PATH PATH=E:\Program Files\Windows Resource Kits\Tools\;  G:\Dropbox\Development\xampp\htdocs.penfolds.git\penfolds-atg-development>set PATH=%PATH%;E:\Program Files\Git\bin;  G:\Dropbox\Development\xampp\htdocs.penfolds.git\penfolds-atg-development>bower install bower bootstrap#~3.0.0      not-cached git://github.com/twbs/bootstrap.git#~3.0.0 bower bootstrap#~3.0.0         resolve git://github.com/twbs/bootstrap.git#~3.0.0 


回答6:

I am also getting the same error and the solution is first to check if the Git is installed or not in the system and if not please install it.

After installation, open Git Bash or Git Shell from Windows and go to your project (same way you go in command prompt using "cd path"). Git Shell is installed by default with Github windows installation.

Then run the same bower install command. It will work as expected.

The below screenshot shows the command using Git Shell



回答7:

On window you ca try to set the path using in command propmt:

set PATH=%PATH%;C:\Program Files\Git\bin; 


回答8:

When you ran the git install, you probably didn't choose:

"Use Git from the Windows Command Prompts"

during the installation.

Re-run git install, and choose that option.



回答9:

You are missing the ENVIRONMENT PATH. Follow these steps:

  1. Search for 'Edit the system environment variables'.
  2. Click on 'Environment Variables'.
  3. In the 'System variables' section, scroll down and click on the variable 'Path'. Click 'Edit'.
  4. Append this text to the end of the 'Variable value'.

;%PROGRAMFILES%\Git\bin;%PROGRAMFILES%\Git\cmd



回答10:

I also got the same problem from cmd and resolved using the following steps.

First install the https://msysgit.github.io/ (if not alredy installed). Then set the Git path as suggested by skinneejoe:

set PATH=%PATH%;C:\Program Files\Git\bin; 

Or this (notice the (x86)):

set PATH=%PATH%;C:\Program Files (x86)\Git\bin; 


回答11:

In Linux:

if you dont have installed git use:

sudo apt-get update sudo apt-get install git 

with command which git you will know the directory where is and then add in path if it is not in that enviroment variable.



回答12:

I bumped into this problem on a cPanel CentOS 6 linux machine. The solution for me was to symlink the cPanel git to /usr/local/bin/git

ln -s /usr/local/cpanel/3rdparty/bin/git /usr/local/bin/git 


回答13:

set PATH=%PATH%;C:\Program Files\git\bin 

This works just fine.

Just check where your git is in the file system, and if this part C:\Program Files\git\bin is different in your case change it.



回答14:

I solved the problem by install Git Bash from Download Git Bash.

Setting this option 3 when installing the software as shown bellow.

Finally select the project folder by right click using Bash as shown below.

and type

npm install

. It works for me.



回答15:

npm install from git bash did work for me. After rebooting PC.



回答16:

Just use the Git Bash instead of node.js or command prompt

As an Example for installing ReactJS, after opening Git Bash, execute the following command to install react:

bower install --react 


回答17:

I had the same problem and needed to restart the cmd - and the problem goes away.



标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!