如何在Windows上安装Ruby on Rails?

时间:2015-06-28 06:52:32

标签: ruby-on-rails windows install

如何在Windows操作系统上安装Ruby on Rails?我是Ruby on Rails的新手。

1 个答案:

答案 0 :(得分:1)

完成安装过程并在Windows上设置环境并设置git配置:

第1步: 下载链接:

一个。 ruby on rails:访问http://railsinstaller.org/en  和download

B中。 nodejs:访问 https://nodejs.org/download/download

  1. 运行并安装railsinstaller.exe
  2. 2.运行并安装node.exe(可选)

    第2步: 设置环境路径:

    <强>一个。去:my computer > properties

    enter image description here

    <强>湾然后Advanced system settings enter image description here

    <强>℃。然后Environment Variables enter image description here

    <强> d。然后Edit(这里需要编辑路径)
    enter image description here

    <强>即将C:\nodejs;添加到路径

    enter image description here

    测试: 1.重启你的电脑(可选) 2.打开你的终端(Git Bash或cmd) 打字&amp;点击输入:

    ruby -v
    rails -v
    git --version
    node -v
    

    enter image description here

    1. 如果您看到版本意味着一切正常。
    2. 您可以设置git配置:

      $ git config --global user.name "your github username"
      $ git config --global user.email email@example.com
      

      如果你想设置github ssh,你可以看到 Generating SSH keys

      如果你想安装mysql,gem 'mysql2'请参阅here

      如果你想安装postgresql和gem'pg',请参阅here