Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save HallanCosta/9a2528176e0a54a680b804c29175408f to your computer and use it in GitHub Desktop.
Save HallanCosta/9a2528176e0a54a680b804c29175408f to your computer and use it in GitHub Desktop.
Como instalar homebrew no ubuntu 22.04

Use da documentação do github para instalar

https://github.com/shivammathur/homebrew-php

SE DER ESSE ERRO:


Warning: /home/linuxbrew/.linuxbrew/bin is not in your PATH.

Fish Terminal

Adicione o ~/.fish_profile

set -gx PATH /home/linuxbrew/.linuxbrew/bin $PATH

Depois adicione o código abaixo no final da linha de ~/.config/fish/config.fish se não tiver nada semelhands

## Environment setup
# Apply .profile: use this to put fish compatible .profile stuff in
if test -f ~/.fish_profile
  source ~/.fish_profile
end

Reinicia o terminal com o comando

fish

Verifique se o diretório do Homebrew foi adicionado ao seu PATH com o comando.

echo $PATH

Você deve ver /home/linuxbrew/.linuxbrew/bin listado.

Bash Terminal ou ZSH Terminal

Abra o arquivo de perfil do seu shell. Se você estiver usando bash, será ~/.bashrc ou ~/.bash_profile. Se você estiver usando zsh, será ~/.zshrc.

Adicione a seguinte linha ao final do arquivo:

export PATH="/home/linuxbrew/.linuxbrew/bin:$PATH"

Salve e feche o arquivo.

Carregue as novas configurações em sua sessão atual do shell com o comando source. Se você editou ~/.bashrc ou ~/.bash_profile, use

source ~/.bashrc 

ou

source ~/.bash_profile. 

Se você editou ~/.zshrc, use

source ~/.zshrc.

Verifique se o diretório do Homebrew foi adicionado ao seu PATH com o comando.

echo $PATH

Você deve ver /home/linuxbrew/.linuxbrew/bin listado.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment