RVM安装缺少$ PATH

问题描述:

当我试图重新安装最新版本的RVM时,RVM给了我一个关于缺少或不正确的“$ PATH”变量的错误通知。有谁知道 (一)这个变量应该设置为什么和 (二)如何改变它?

我已经搜索了几十个线程,但没有一个看起来完全引用了这个问题。任何帮助将不胜感激。

感谢, 科迪

Codys-MacBook-Pro:demo_app Cody$ rvm get head && rvm reload 
######################################################################## 100.0% 
Downloading RVM from wayneeseguin branch master 
Upgrading the RVM installation in /Users/Cody/.rvm/ 
RVM PATH line found in /Users/Cody/.bashrc /Users/Cody/.zshrc. 
RVM sourcing line found in /Users/Cody/.bash_profile /Users/Cody/.zprofile. 

Upgrade Notes: 

/Users/Cody/.bash_profile:3:export PATH=/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/usr/local/git/bin:/Users/Cody/.rvm/bin 

* WARNING: Above files contains `PATH=` with no `$PATH` inside, this can break RVM, 
for details check https://github.com/wayneeseguin/rvm/issues/1351#issuecomment-  10939525 
to avoid this warning append #PATH. 

Upgrade of RVM in /Users/Cody/.rvm/ is complete. 

这不是一个错误,解决方法是$ PATH预先考虑到您的出口PATH =行,所以你应该有:

export PATH=$PATH:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/usr/local/git/bin:/Users/Cody/.rvm/bin 
+0

这样做。非常感谢! – hawkharris 2013-05-07 20:21:01

显示消息因为硬编码PATH是不好的做法,它会中断任何动态配置,例如在/etc/profile.d/*.sh中完成,这里是对于OH-MY-ZSH =>https://github.com/robbyrussell/oh-my-zsh/pull/1359

要解决它只是删除线,它不应该在那里。