美文网首页
Ubuntu14.04安装Ruby过程总结

Ubuntu14.04安装Ruby过程总结

作者: 诸司马计 | 来源:发表于2015-09-14 01:13 被阅读497次

    步骤

    1. 详细步骤:《如何快速正确的安装 Ruby, Rails 运行环境》
    2. https://get.rvm.io有时由于网速慢连接不上,多试几次。
    3. rvm list known 列出已知版本
    4. rvm install 2.2.3 时报错100,大体意思是在自动安装依赖的过程中碰到sourcelist里有err的情况。基本解决办法是检查/etc/apt/source.list里ppa和源列表,删除掉err404的。
      还有一种办法是:rvm autolibs disable,关闭自动安装依赖设置,可成功下载并安装ruby。

    错误

    RVM is not a function, selecting rubies with 'rvm use …' will not work

    安装完rvm,当运行rvm use...命令时会提示上述错误,这是由于官网提示说要求Gnome Ternimal要使用login shell方式启动。

    解决办法:

    1. Open console
    1. Select Edit -> Profile Preferences
    2. Select tab: Title and Command
    3. Check box 'Run command as a login shell'
    4. Restart terminal

    附录

    手把手安装RVM以及为什么RVM is not a function
    Difference between Login Shell and Non-Login Shell?

    相关文章

      网友评论

          本文标题:Ubuntu14.04安装Ruby过程总结

          本文链接:https://www.haomeiwen.com/subject/fstmcttx.html