「在 Windows 上安裝設定 Ruby 環境」:修訂間差異

出自DILA Wiki
imported>Ray
imported>Ray
行 2: 行 2:
 到 http://rubyinstaller.org/ 下載安裝 RubyInstaller for Windows
 到 http://rubyinstaller.org/ 下載安裝 RubyInstaller for Windows


 注意:Nokogiri 可能不支援最新版 Ruby, 可以用 Ruby 2.2.6 (2016.12.27)
 注意:Nokogiri 可能不支援最新版 Ruby, 可以用 Ruby 2.3.3 (2017.4.25)


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


=更新 Rubygems=
=更新 Rubygems=

於 2017年4月25日 (二) 15:58 的修訂

安裝 Ruby

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

注意:Nokogiri 可能不支援最新版 Ruby, 可以用 Ruby 2.3.3 (2017.4.25)

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

更新 Rubygems

在 dos 視窗執行以下命令

gem update --system

設定安裝 gem 不要安裝文件

在 DOS 視窗執行以下命令

( echo. && echo install: --no-ri --no-rdoc && echo update: --no-ri --no-rdoc ) >> "%USERPROFILE%\.gemrc"

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