美文网首页
Ruby on rails 安装教程

Ruby on rails 安装教程

作者: 懒豆豆柒 | 来源:发表于2017-07-04 23:45 被阅读0次

    Ruby 更新教程 http://blog.csdn.net/qq_34047841/article/details/51890755
    $ curl -L get.rvm.io | bash -s stable
    $ source ~/.bashrc
    $ source ~/.bash_profile

    $ rvm -v

    RubyGems(ruby的包管理器)更新且使用淘宝gem数据源 https://gems.ruby-china.org/

    1. 更新系统的gem
      $ sudo gem update --system # 这里请翻墙一下
      $ gem -v
      2.6.3

    2. 增加淘宝gem数据源
      $ gem sources --add https://gems.ruby-china.org/ --remove https://rubygems.org/
      $ gem sources -l
      https://gems.ruby-china.org

    确保只有 gems.ruby-china.org

    3.安装 rails https://ruby-china.github.io/rails-guides/getting_started.html
    $ sudo gem install rails

    4.创建一个例子
    进入具有写权限的文件夹,输入:
    $ rails new blog
    $ cd blog
    $ bundle install
    $ cd bin
    $ rails server

    相关文章

      网友评论

          本文标题:Ruby on rails 安装教程

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