尝试为Windows XP安装Ruby Gems时出现SocketError

Aru*_*hit 1 ruby windows-xp

我试图安装nokogiri,selenium-webdriver,mechanize但得到如下错误:

ruby 1.9.3p374 (2013-01-15) [i386-mingw32]

C:\Documents and Settings\pp>gem install nokogiri
ERROR:  Could not find a valid gem 'nokogiri' (>= 0) in any repository
ERROR:  While executing gem ... (Gem::RemoteFetcher::FetchError)
    SocketError: getaddrinfo: No such host is known.  (http://rubygems.org/lates
t_specs.4.8.gz)

C:\Documents and Settings\pp>gem install nokogiri
ERROR:  Could not find a valid gem 'nokogiri' (>= 0) in any repository
ERROR:  While executing gem ... (Gem::RemoteFetcher::FetchError)
    SocketError: getaddrinfo: No such host is known.  (http://rubygems.org/lates
t_specs.4.8.gz)

C:\Documents and Settings\pp>gem install selenium-webdriver
ERROR:  Could not find a valid gem 'selenium-webdriver' (>= 0) in any repository

ERROR:  While executing gem ... (Gem::RemoteFetcher::FetchError)
    SocketError: getaddrinfo: No such host is known.  (http://rubygems.org/lates
t_specs.4.8.gz)

C:\Documents and Settings\pp>gem install selenium
ERROR:  Could not find a valid gem 'selenium' (>= 0) in any repository
ERROR:  While executing gem ... (Gem::RemoteFetcher::FetchError)
    SocketError: getaddrinfo: No such host is known.  (http://rubygems.org/lates
t_specs.4.8.gz)
Run Code Online (Sandbox Code Playgroud)

你能帮我完成吗?

Saj*_*ran 5

您的错误似乎是代理问题,请尝试以下命令

gem install --http-proxy <your proxy host:port> <your gem name>

例如.

gem install --http-proxy http://localhost:8888 selenium-webdriver

你也可以

SET HTTP_PROXY=http://%USER%:%PASSWORD%@%SERVER%:%PORT%

然后执行你的 gem install