RVM 和 bash_profile
我在 Mac 上安装 RVM 时遇到问题。我把电脑拿去修理风扇,所以我和我的妻子一起尝试设置我的环境来完成一些工作。
我遇到的问题是 bash_profile。每次我添加功能时: [[ -s "$HOME/.rvm/scripts/rvm" ]] && 。 "$HOME/.rvm/scripts/rvm" # Load RVM function
and then reload the shell 我收到以下错误:
-bash: export: -s': not a valid identifier -bash:导出:
/Users/Christine/.rvm/scripts/rvm':不是有效的标识符 -bash:导出:`]]':不是有效的标识符 Christine-MacBook:~ Christine$
这是我当前的环境:
- OSX Lion 10.7.2
- git 版本 1.7.5.4
- 最新的 RVM 安装了
- xcode 版本 4.2.1
- bash_profile: 导出 PATH=/usr/local/bin:/usr/local/sbin:/usr/bin:/bin:/sbin:/usr/sbin[[ -s "$HOME/.rvm/scripts/rvm" ]] & ;& 。 "$HOME/.rvm/scripts/rvm" # 加载 RVM 函数
提前致谢。
I'm having problems installing RVM on my mac. I took my computer in to have the fan repaired so I'm using my wives trying to set up my environment to get some work done.
The problem I'm having is the bash_profile. Every time I add the function:
[[ -s "$HOME/.rvm/scripts/rvm" ]] && . "$HOME/.rvm/scripts/rvm" # Load RVM function
and then reload the shell I get the following error:
-bash: export: -s': not a valid identifier
/Users/Christine/.rvm/scripts/rvm': not a valid identifier
-bash: export:
-bash: export: `]]': not a valid identifier
Christines-MacBook:~ Christine$
Here is my current environment:
- OSX Lion 10.7.2
- git version 1.7.5.4
- latest RVM is installed
- xcode version 4.2.1
- bash_profile:
export PATH=/usr/local/bin:/usr/local/sbin:/usr/bin:/bin:/sbin:/usr/sbin[[ -s "$HOME/.rvm/scripts/rvm" ]] && . "$HOME/.rvm/scripts/rvm" # Load RVM function
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的最终要点有多准确?也就是说,您的 bash_profile 是否说:
或者
它们应该位于不同的行上,并且根据您的错误消息,我猜这就是问题所在。
How accurate is your final bullet point? That is, does your
bash_profile
say:or
They should be on separate lines, and based on your error message, I'd guess this is the problem.