如何在Windows操作系统上安装Ruby on Rails?我是Ruby on Rails的新手。
答案 0 :(得分:1)
完成安装过程并在Windows上设置环境并设置git配置:
第1步: 下载链接:
一个。 ruby on rails:访问http://railsinstaller.org/en 和download
B中。 nodejs:访问 https://nodejs.org/download/和download
railsinstaller.exe
2.运行并安装node.exe
(可选)
第2步: 设置环境路径:
<强>一个。去:my computer > properties
<强>湾然后Advanced system settings
<强>℃。然后Environment Variables
<强> d。然后Edit
(这里需要编辑路径)
<强>即将C:\nodejs;
添加到路径
测试: 1.重启你的电脑(可选) 2.打开你的终端(Git Bash或cmd) 打字&amp;点击输入:
ruby -v
rails -v
git --version
node -v
您可以设置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