Ele disse aqui para adicioná-lo ao seu PATH
após a execução:
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Linuxbrew/install/master/install)"
Você adicionou o seguinte ao seu ~/.profile
?:
test -d ~/.linuxbrew && PATH="$HOME/.linuxbrew/bin:$PATH"
test -d /home/linuxbrew/.linuxbrew && PATH="/home/linuxbrew/.linuxbrew/bin:$PATH"
test -r ~/.bash_profile && echo 'export PATH="$(brew --prefix)/bin:$PATH"' >>~/.bash_profile
echo 'export PATH="$(brew --prefix)/bin:$PATH"' >>~/.profile
Agora, se o acima foi feito, verifique se essas linhas estão em ~/.bash_profile
export PATH="/home/linuxbrew/.linuxbrew/bin:$PATH"
export MANPATH="/home/linuxbrew/.linuxbrew/share/man:$MANPATH"
export INFOPATH="/home/linuxbrew/.linuxbrew/share/info:$INFOPATH"
export PATH="$(brew --prefix)/bin:$PATH"
Em seguida, isso está em ~/.profile
export PATH="$(brew --prefix)/bin:$PATH"
Agora, execute a linha abaixo para adicionar essa linha ao seu /home/$USER/.bashrc
echo 'export PATH="/home/linuxbrew/.linuxbrew/bin:$PATH"' >> ~/.bashrc
Origem ~/.bashrc
com source ~/.bashrc
. Agora feche todos os terminais e reinicie o terminal e digite: 'which brew' e você deverá ver:
/home/linuxbrew/.linuxbrew/bin/brew
Se foi feito corretamente.