如何安装Ruby和RubyGems

Python016

如何安装Ruby和RubyGems,第1张

不同的操作系统安装方法是不一样的,建议学Ruby用Linux,有条件的话也可以用MAC,用windows。会遇到很多问题:

windows:到https://www.ruby-lang.org/下载安装包,安装好,不要忘记改环境变更量。

https://rubygems.org/pages/download 下载rubygems安装包,解压cd 到子文件夹下setup.rb

http://www.runoob.com/ruby/ruby-tutorial.html

上面的链接里讲的很详细,你可以按照这个SOP来安装,Linux和windows的都有。

不懂的可以问我,我都安装过。

如果通过上面方法安装DevKit成功率会比较高,下面这种方法不一定能成。但如果你想折腾,可以来试试下面的手动安装。

windows下安装或升级时gem经常会碰到

Please update your PATH to include build tools or download the DevKit

from 'http://rubyinstaller.org/downloads' and follow the instructions

at 'http://github.com/oneclick/rubyinstaller/wiki/Development-Kit'

这是因为没有安装DevKit的缘故。

DevKit 是windows平台下编译和使用本地C/C++扩展包的工具。它就是用来模拟Linux平台下的make, gcc, sh来进行编译。注:这个方法目前仅支持通过RubyInstaller安装的Ruby,如果不是建议你重新安装。安装方法:双击下载的7z文件,指定解压路径,路径中不能有空格。如C:\DevKit,这个路径就是<DEVKIT_INSTALL_DIR>。

>cd <DEVKIT_INSTALL_DIR>

>ruby dk.rb init

#生成config.yml,这里会检查将要添加DevKit支持的Ruby列表,只支持通过RubyInstaller安装的Ruby

#如果这里列出的Ruby与你的要求不符,可以手动修改

>ruby dk.rb review #检查要添加DevKit支持的Ruby列表是否有误,可以略过

>ruby dk.rb install

[INFO] Updating convenience notice gem override for 'C:/Ruby192'

[INFO] Installing 'C:/Ruby192/lib/ruby/site_ruby/devkit.rb'

检查是否安装成功

>gem install rdiscount --platform=ruby

Fetching: rdiscount-1.6.8.gem (100%)

Temporarily enhancing PATH to include DevKit...

Building native extensions. This could take a while...

Successfully installed rdiscount-1.6.8

1 gem installed

Installing ri documentation for rdiscount-1.6.8...

Installing RDoc documentation for rdiscount-1.6.8...

如果能安装rdiscount成功说明安装DevKit成功。