RVM错误和解决:"RVM is not a function, selecting rubies with 'rvm use ...' will not w_Ruby_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > Ruby > RVM错误和解决:"RVM is not a function, selecting rubies with 'rvm use ...' will not w

RVM错误和解决:"RVM is not a function, selecting rubies with 'rvm use ...' will not w

 2013/7/24 19:40:27  程序员之蚁族  程序员俱乐部  我要评论(0)
  • 摘要:参考网址:http://blog.sina.com.cn/s/blog_9d6e035501010lol.htmlWhenyourunarvmcommandsuchas$rvmuse1.9.3butreceiveanerrormessageofRVMisnotafunction,selectingrubieswith'rvmuse...'willnotwork.ThiserrorhappensbecauseunderRVM'sinstallationdirectory
  • 标签:

参考网址:http://blog.sina.com.cn/s/blog_9d6e035501010lol.html

?

When you run a rvm command such as

$ rvm use 1.9.3
but receive an error message of
RVM is not a function, selecting rubies with 'rvm use ...' will not work.
This error happens because under RVM's installation directory (normally $HOME/.rvm/bin), there is an executable named 'rvm'; whereas under $HOME/.rvm/scripts directory, there is a script called 'rvm'. By?default, the 'rvm' executable is used, which cannot handle many rvm commands such as 'rvm use'.? ? One should load RVM into a shell session as a function (run the 'rvm'?script). To do that, add the following line to '~/.bash_profile':
[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" #load RVM into a shell session as a function

PATH=$PATH:$HOME/.rvm/bin #Add RVM to PATH for scripting
Open a new terminal or run the following command to reload /.bash_profile in the current terminal. The problem should be solved.
$ source ~/.bash_profile
  • 相关文章
发表评论
用户名: 匿名