Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

git: Error: Another active Homebrew process is already in progress

Tags:

homebrew

When I try to do anything with Homebrew, I get the following error and don't know how to resolve it. I run: brew update

I get the following error message:

/usr/local/Homebrew/Library/Homebrew/utils/lock.sh: line 19:/usr/local/var/homebrew/locks/update: Permission denied
    -e:1:in 'initialize': Bad file descriptor (Errno::EBADF)
        from -e:1:in 'new'
        from -e:1:in '<main>'
    Error: Another active Homebrew process is already in progress. 
    Please wait for it to finish or terminate it to continue.
like image 591
Erik P. Avatar asked Nov 29 '22 09:11

Erik P.


2 Answers

That's probably because another instance of Homebrew crashed and left a lock file. You can delete it manually by deleting all files in the lock directory with :

rm /usr/local/var/homebrew/locks/*
like image 108
Ortomala Lokni Avatar answered Jan 18 '23 23:01

Ortomala Lokni


I solved it by rm -rf /usr/local/Library/Locks/*

like image 26
Akanksha Gupta Avatar answered Jan 18 '23 23:01

Akanksha Gupta