我是OSX的新手,我试图安装bash,但是当我运行终端时出现了这个错误消息:-bash: /usr/local/Cellar/grc/1.5/etc/grc.bashrc: No such file or directory
那我该如何解决呢?
答案 0 :(得分:3)
阅读brew info grc
grc: stable 1.5
http://korpus.juls.savba.sk/~garabik/software/grc.html
Conflicts with: cc65
Not installed
From: https://github.com/Homebrew/homebrew/commits/master/Library/Formula/grc.rb
==> Caveats
New shell sessions will start using GRC after you add this to your profile:
source "`brew --prefix`/etc/grc.bashrc"
建议您查找并从.bash_profile
文件中删除与上面输出中的最后一行类似的行。
答案 1 :(得分:1)
我遇到了同样的问题,即shell(在我的情况下是zsh)在启动时出错,这对我来说在升级OS X后出现了。
问题是在shell知道brew命令的存储位置之前调用brew命令。要解决此问题,请在.bash_profile(或.zshrc)中移动以下行:
source "`brew --prefix`/etc/grc.bashrc"
在这一行之后:
export PATH=/usr/local/bin:/usr/local/sbin:$PATH