尝试安装rails时我的问题是什么?


-1

我尝试更新ruby,这是我的反馈

试过sudo安装,这是我的反馈 我拥有所有可以从任何书籍或在线资源获得的pac经理等等,我尝试了很多方法,以及我能在网上找到的所有内容。能够确切知道问题的人是否可以通知我解决方案。


您是否阅读过需要Ruby 2.2.2或更新版本的错误消息?ruby --version如果需要检查,请运行。
NetherLinks 2016年

1
当您发布输出时,除非绝对必要,否则请不要截取屏幕截图。最好将代码剪切并粘贴到原始问题中。
Allan 2016年

Answers:


1

你需要更新Ruby。

  1. 安装home-brew(它允许你从源代码安装软件包): ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

  2. 安装红宝石:

    • brew install rbenv ruby-build
    • echo 'if which rbenv > /dev/null; then eval "$(rbenv init -)"; fi' >> ~/.bash_profile
    • source ~/.bash_profile
    • rbenv install 2.3.1
    • rbenv global 2.3.1
  3. 检查你有哪个版本(它应该显示2.3.1): ruby -v

  4. 安装Rails:

    • gem install rails -v 4.2.6
    • rbenv rehash
  5. 检查Rails版本: rails -v

我希望它对你有所帮助

资源

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.