0

現在、Ubuntu 11.10にRuby(ruby 1.9.3p194(2012-04-20リビジョン35410))をインストールしています。「sudogeminstallamqp」を使用してAMQPgemをインストールしたかった。ただし、次のエラーメッセージが表示されて失敗します。

    Building native extensions.  This could take a while...
    ERROR:  Error installing amqp:
    ERROR: Failed to build gem native extension.

    /usr/local/bin/ruby extconf.rb
    checking for main() in -lssl... no
    checking for rb_trap_immediate in ruby.h,rubysig.h... no
    checking for rb_thread_blocking_region()... yes
    checking for inotify_init() in sys/inotify.h... yes
    checking for writev() in sys/uio.h... yes
    checking for rb_thread_check_ints()... yes
    checking for rb_time_new()... yes
    checking for sys/event.h... no
    checking for epoll_create() in sys/epoll.h... yes
    creating Makefile

    make
    compiling ed.cpp
    make: g++: Command not found
    make: *** [ed.o] Error 127


    Gem files will remain installed in /usr/local/lib/ruby/gems/1.9.1/gems/eventmachine-1.0.0 for inspection.
    Results logged to /usr/local/lib/ruby/gems/1.9.1/gems/eventmachine-1.0.0/ext/gem_make.out

誰かが私を助けてくれたら幸いです。ありがとう。

4

1 に答える 1

1

ネイティブ拡張をコンパイルするには、コンパイラが必要です。以下を使用してg ++とその友達をインストールするだけです:

sudo apt-get install build-essential

そしてさらに試みる。

于 2012-09-23T09:06:48.833 に答える