「在 Windows 上安裝設定 Ruby 環境」:修訂間差異
出自DILA Wiki
imported>Ray |
imported>Ray |
||
行 3: | 行 3: | ||
2015.6.17: Nokogiri 還不支援 Ruby 2.2, 可以用 Ruby 2.1.6 | 2015.6.17: Nokogiri 還不支援 Ruby 2.2, 可以用 Ruby 2.1.6 | ||
=就更新 Rubygems= | |||
<syntaxhighlight lang="XML"> | |||
gem update --system | |||
</syntaxhighlight> | |||
=Nokogiri= | =Nokogiri= | ||
行 17: | 行 23: | ||
gem sources -r https://rubygems.org/ # 移除 https | gem sources -r https://rubygems.org/ # 移除 https | ||
gem sources -a http://rubygems.org/ # 加入 http | gem sources -a http://rubygems.org/ # 加入 http | ||
</syntaxhighlight> | </syntaxhighlight> |
於 2015年6月30日 (二) 11:41 的修訂
安裝 Ruby
到 http://rubyinstaller.org/ 下載安裝 RubyInstaller for Windows
2015.6.17: Nokogiri 還不支援 Ruby 2.2, 可以用 Ruby 2.1.6
就更新 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