[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

rails installation - incompatible rake ?

Nirav

1/30/2006 11:24:00 PM

What do I need to do inorder to install rails? - Thx -ND


C:\>gem install rails
Attempting local installation of 'rails'
ERROR: Error installing gem rails[.gem]: rails requires rake >= 0.6.2


C:\>gem install rails-1.0.0.gem
Attempting local installation of 'rails-1.0.0.gem'
ERROR: Error installing gem rails-1.0.0.gem[.gem]: rails requires rake
>= 0.6.2

1 Answer

Jim Weirich

2/1/2006 10:37:00 PM

0

Nirav wrote:
> What do I need to do inorder to install rails? - Thx -ND
>
>
> C:\>gem install rails
> Attempting local installation of 'rails'
> ERROR: Error installing gem rails[.gem]: rails requires rake >= 0.6.2
>
>
> C:\>gem install rails-1.0.0.gem
> Attempting local installation of 'rails-1.0.0.gem'
> ERROR: Error installing gem rails-1.0.0.gem[.gem]: rails requires rake

The rails gem has dependencies on a number of other gems. When
installed from the net, the dependencies are resolved automatically.
When you install a local .gem file, you must get all the dependent gems
as well and install them first.

If you have net access, the easiest way is to use the command:

gem install rails --include-dependencies --remote

--
-- Jim Weirich

--
Posted via http://www.ruby-....