1

ruby インストーラーを使用して ruby​​ on rails (v4.0) をインストールしようとしています。このエラーが発生しています。私は RoR を初めて使用し、いくつかの Web サイトで devkit をインストールするように言われました。私はそれをしました。gem install thinを実行しました

 C:\Users\shashid\Downloads>gem install rails
Temporarily enhancing PATH to include DevKit...
Building native extensions.  This could take a while...
ERROR:  Error installing rails:
        ERROR: Failed to build gem native extension.

    C:/RubyRails/bin/ruby.exe extconf.rb
*** extconf.rb failed ***
Could not create Makefile due to some reason, probably lack of necessary
libraries and/or headers.  Check the mkmf.log file for more details.  You may
need configuration options.

Provided configuration options:
        --with-opt-dir
        --without-opt-dir
        --with-opt-include
        --without-opt-include=${opt-dir}/include
        --with-opt-lib
        --without-opt-lib=${opt-dir}/lib
        --with-make-prog
        --without-make-prog
        --srcdir=.
        --curdir
        --ruby=C:/RubyRails/bin/ruby
        --with-atomic_reference-dir
        --without-atomic_reference-dir
        --with-atomic_reference-include
        --without-atomic_reference-include=${atomic_reference-dir}/include
        --with-atomic_reference-lib
        --without-atomic_reference-lib=${atomic_reference-dir}/
C:/RubyRails/lib/ruby/2.0.0/mkmf.rb:431:in `try_do': The compiler failed to gene
rate an executable file. (RuntimeError)
You have to install development tools first.
        from C:/RubyRails/lib/ruby/2.0.0/mkmf.rb:516:in `try_link0'
        from C:/RubyRails/lib/ruby/2.0.0/mkmf.rb:814:in `try_run'
        from extconf.rb:22:in `<main>'


Gem files will remain installed in C:/RubyRails/lib/ruby/gems/2.0.0/gems/atomic-
1.1.10 for inspection.
Results logged to C:/RubyRails/lib/ruby/gems/2.0.0/gems/atomic-1.1.10/ext/gem_ma
ke.out

よろしくお願いいたします。

4

4 に答える 4

4

Windows の場合、Ruby DevKit をインストールする必要があります。http: //rubyinstaller.org/downloads/ (少し下にスクロール) から入手してください。

于 2013-07-02T18:47:28.693 に答える
0

32 ビットの Ruby と 64 ビットの DevKit を組み合わせようとすると、同じことが発生する可能性があります。解決策は、同じビット バージョンを使用することです。

たとえば、現在のバージョン: ruby​​installer-2.0.0-p247-x64.exe DevKit-mingw64-64-4.7.2-20130224-1432-sfx.exe

于 2013-09-18T09:19:10.420 に答える