7

Rails オープン ソース webapp をダウンロードしました。

C:\Users\admin\Downloads\iCare\icare-develop>rails server
←[31mCould not find kgio-2.8.0 in any of the sources←[0m
←[33mRun `bundle install` to install missing gems.←[0m

私は次を使用してこのエラーを修正しようとしました:

cmd:>gem install kgio -v '2.8.0'

エラーが発生しました:

Temporarily enhancing PATH to include DevKit...
Building native extensions.  This could take a while...
ERROR:  Error installing kgio:
ERROR: Failed to build gem native extension.C:/Ruby193/bin/ruby.exe extconf.rb
checking for CLOCK_MONOTONIC in time.h... no
checking for CLOCK_MONOTONIC() in time.h... no
checking for clockid_t in time.h... no
checking for clock_gettime() in -lrt... no
checking for t_open() in -lnsl... no
checking for socket() in -lsocket... no
checking for poll() in poll.h... no
checking for getaddrinfo() in sys/types.h,sys/socket.h,netdb.h... no
getaddrinfo required
*** 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:/Ruby193/bin/ruby
        --with-rtlib
        --without-rtlib
        --with-nsllib
        --without-nsllib
        --with-socketlib
        --without-socketlib

Gem ファイルは C:/Ruby193/lib/ruby/gems/1.9.1/gems/kgio-2.8 にインストールされたままになります。0 は検査用です。結果は C:/Ruby193/lib/ruby/gems/1.9.1/gems/kgio-2.8.0/ext/kgio/gem_make.out に記録されます

次のように入力しbundle installましたが、何も起こりませんでした..

4

3 に答える 3

14

kgioは*nixシステム専用です。

kgio gemページ:

kgio 2.8.0 kgioは、EAGAINおよびEINPROGRESSで例外を発生させることなく、RubyにノンブロッキングI/Oメソッドを提供します。ユニコーンとレインボーでの使用を目的としています!ラックサーバー。ただし、他のアプリケーション(Unixライクなプラットフォームで実行される)で使用される場合があります。

于 2013-01-25T16:27:27.633 に答える
0

あなたは Windows オペレーティング システムを使用していると思います。このエラーを解決するために必要なのは、gem ファイル内のgem 'unicorn'をコメントするか削除することだけです。これは Linux システム専用であるためです。

于 2015-08-17T05:31:13.253 に答える