在 Windows 上安裝設定 Ruby 環境

出自DILA Wiki
於 2016年1月19日 (二) 10:47 由 imported>Miaomiao 所做的修訂 →‎安裝 Ruby

安裝 Ruby

http://rubyinstaller.org/ 下載安裝 RubyInstaller for Windows

注意:Nokogiri 還不支援 Ruby 2.2, 可以用 Ruby 2.1.6 (2015.6.17)

安裝過程中,Add Ruby executables to your PATH 要打勾。

更新 Rubygems

gem update --system

Nokogiri

在 dos 下執行以下命令安裝 Nokogiri (XML Parser for Ruby)

gem install nokogiri

如果出現 SSL_connect 錯誤,就執行以下指令改用 http

gem sources -r https://rubygems.org/  # 移除 https
gem sources -a http://rubygems.org/  # 加入 http