Mensagem aparece depois que eu instalei homebrew

0

Depois que eu instalei o Homebrew esta mensagem aparece toda vez que eu inicio ou reinicio o Ubuntu

Error found when loading /home/lentakit/.profile
/home/lentkit/.profile line 21 brew: command not found
/home/lentkit/.profile line 22 brew: command not found
As a result the session will not be configured correctly 
Fix the problem as soon as feasible

este é o resultado da execução de cat -n /home/lentakit/.profile

     1  # ~/.profile: executed by the command interpreter for login shells.
 2  # This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login
 3  # exists.
 4  # see /usr/share/doc/bash/examples/startup-files for examples.
 5  # the files are located in the bash-doc package.
 6  
 7  # the default umask is set in /etc/profile; for setting the umask
 8  # for ssh logins, install and configure the libpam-umask package.
 9  #umask 022
10  
11  # if running bash
12  if [ -n "$BASH_VERSION" ]; then
13      # include .bashrc if it exists
14      if [ -f "$HOME/.bashrc" ]; then
15      . "$HOME/.bashrc"
16      fi
17  fi
18  
19  # set PATH so it includes user's private bin directories
20  PATH="$HOME/bin:$HOME/.local/bin:$PATH"
21  export PATH="$(brew --prefix)/bin:$PATH"
22  export PATH="$(brew --prefix)/bin:$PATH"
23  export PATH="$(brew --prefix)/bin:$PATH"

O que devo fazer?

    
por George Ghaleb 23.08.2017 / 14:32

1 resposta

0

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.

    
por George Udosen 23.08.2017 / 14:49