deepak,

As the gem you are trying to install is on alocal file system with no
internet connectivity, and NOT being installed over the internet, you
need to install with gem's --local switch.

I'm presuming that you've somehow downloaded the gem you need from
another system with internet connectivity, and then copied it over to
the system without the internet.

So now open a console on the system where your copied the gem onto and
cd to the directory where you have the gem saved. Now invoke gem:

       gem install --local watir-1.6.5.gem

Note that if this gem requires other gems that are NOT already
installed, you will need to download each of them as well and re-run
the process for each.

Also if you try 'gem update' it will fail for the same reasons, no
internet connectivity. You'll
have to check for new gems from a system with internet connectivity,
download all the new gems you need, copy them over to the non-internet
system and install them using gem's --local switch.

FYI: You can look at the gem options via: gem --help

On Apr 16, 3:41 am, deepak <[email protected]> wrote:
> I'm trying to install watir 1..6.5 on a sytem without internet
> connectivity, I'm getting the below error.
> If anyone is aware of the problem please help.
>
> C:\ruby>gem install "D:\watir-1.6.5.gem"
> ERROR:  While executing gem ... (RuntimeError)
>     Error instaling D:\watir-1.6.5.gem:
>         watir requires win32-process >= 0.5.5
>
> --
> Before posting, please readhttp://watir.com/support. In short: search before 
> you ask, be nice.
>
> You received this message because you are subscribed 
> tohttp://groups.google.com/group/watir-general
> To post: [email protected]

-- 
Before posting, please read http://watir.com/support. In short: search before 
you ask, be nice.

You received this message because you are subscribed to 
http://groups.google.com/group/watir-general
To post: [email protected]

Reply via email to