A question about Net-ssh

I installed net-ssh by running the command: “gem install net-ssh”, but I
got load error when using “require net/ssh”. It seems that ruby doesn’t
find the library. How can I let ruby find this library?

thanks.

Zhao Yi schrieb:

I installed net-ssh by running the command: “gem install net-ssh”, but I
got load error when using “require net/ssh”. It seems that ruby doesn’t
find the library. How can I let ruby find this library?

thanks.
do you have a “require ‘rubygems’” above your “require ‘net/ssh’” ?

Zhao Yi wrote:

I installed net-ssh by running the command: “gem install net-ssh”, but I
got load error when using “require net/ssh”. It seems that ruby doesn’t
find the library. How can I let ruby find this library?

thanks.

Try “require ‘rubygems’” first.

If you want rubygems loaded automatically when you use ruby, set your
RUBYOPT environment variable to “-rubygems”.

Regards,

Dan