加载 /home/[User]/.profile 时发现错误

加载 /home/[User]/.profile 时发现错误

我昨晚安装了 homebrew,以便能够在 Ubuntu 20.4 上安装 wtfutil 终端。我成功了,后来决定卸载它。

看来卸载成功了,但留下了一些我不明白的错误。我是 Ubuntu/Linux 的新手,所以这让我很困扰,因为输入密码后我无法访问我的桌面。

完整错误如下:

Error found when loading /home/[user]/.profile

/home/[user]/.profile: line 28: /home/linuxbrew/.linuxbrew/bin/brew: No such file or directory 

As a result the session will not be configured correctly.
You should fix the problem as soon as feasible.

答案1

我遇到了完全相同的问题,这真的很有用,并且 synacticgeorge 的评论也是解决办法。

  • 重启
  • 在登录屏幕上,按 CTRL+ALT+F3 并以 TTY 登录
  • nano .profile (或者 vi、gedit 等等)
  • 移除有问题的冲泡管线。
  • 利润

答案2

做: $ nano ~/.profile

转到文件末尾,并注释掉以下内容:

#if [ -d "$HOME/.local/bin" ] ; then
#    PATH="$HOME/.local/bin:$PATH"
#fi
#eval $(/home/linuxbrew/.linuxbrew/bin/brew shellenv)

最后保存:

Ctrl + X 
Y
Enter
sudo reboot now

你已准备好出发)

答案3

您可能复制了安装说明并将 homebrew 添加到您的路径中。如果您从 /home/user/.profile 中删除对 homebrew 的引用,它应该会再次工作

在终端中输入 rm -rf /home/[user]/.profile

相关内容