web-dev-qa-db-ja.com

gemを使用してRailsをUbuntuにインストールする方法

エラーメッセージ:

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

    /usr/bin/Ruby2.1 -r ./siteconf20150328-1540-hff2f0.rb extconf.rb
checking if the C compiler accepts ... *** 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=/usr/bin/Ruby2.1
  --help
  --clean
/usr/lib/Ruby/2.1.0/mkmf.rb:456:in `try_do': The compiler failed to generate an executable file. (RuntimeError)
You have to install development tools first.
  from /usr/lib/Ruby/2.1.0/mkmf.rb:571:in `block in try_compile'
  from /usr/lib/Ruby/2.1.0/mkmf.rb:522:in `with_werror'
  from /usr/lib/Ruby/2.1.0/mkmf.rb:571:in `try_compile'
  from extconf.rb:80:in `nokogiri_try_compile'
  from extconf.rb:87:in `block in add_cflags'
  from /usr/lib/Ruby/2.1.0/mkmf.rb:621:in `with_cflags'
  from extconf.rb:86:in `add_cflags'
  from extconf.rb:337:in `<main>'

extconf failed, exit code 1

Gem files will remain installed in /var/lib/gems/2.1.0/gems/nokogiri-1.6.6.2 for inspection.
Results logged to /var/lib/gems/2.1.0/extensions/x86_64-linux/2.1.0/nokogiri-1.6.6.2/gem_make.out

構成:

  1. Ubuntu 14.10(GNU/Linux 3.16.0-23-generic x86_64)
  2. gcc(Ubuntu 4.9.1-16ubuntu6)4.9.1
  3. Ruby 2.1.2p95(2014-05-08)[x86_64-linux-gnu]
62
Allen

RVMを使用してUbuntu 14.04でRails 4.2.4にアップグレードした後、これを行う必要がありました。

Sudo apt-get install libgmp-dev

または

Sudo apt-get install libgmp3-dev

完全なスタックトレース: http://Ruby-on-Rails-eq8.blogspot.co.uk/2015/10/solving-ubuntu-1404-Ruby-c-dependancy.html

228
equivalent8

いくつかのRuby要件が欠落しているようです。 RVMを使用している場合は、次を試してください。

rvm requirements

依存関係のリストを取得して手動でインストールします。

それ以外の場合は、次を使用して既知の基本要件を直接インストールします。

Sudo apt-get install build-essential bison openssl libreadline6 libreadline6-dev curl git-core zlib1g zlib1g-dev libssl-dev libyaml-dev libxml2-dev autoconf libc6-dev ncurses-dev automake libtool
50
shivam

Rubyの開発依存関係がないため、このエラーが発生します。

これを解決するには、RVMをインストールして使用することをお勧めします。公式および更新された手順はこちらで確認してください https://rvm.io/rvm/install

私がこの質問に答えたとき、私はこれらのステップに従った:

gpg --keyserver hkp://keys.gnupg.net --recv-keys
409B6B1796C275462A1703113804BB82D39DC0E3

\curl -sSL https://get.rvm.io | bash

この警告が表示された場合

  * WARNING: You have '~/.profile' file, you might want to load it,
    to do that add the following line to '/home/mao/.bash_profile':

  source ~/.profile

次のコマンドを実行します。

echo source ~/.profile >> ~/.bash_profile

次に、次を実行して、更新したbash_profileをリロード/適用します。

source ~/.bash_profile

最後に、これを実行して要件をインストールします。

rvm requirements

これは、Ubuntu、Fedora、Debian、Redhat、SlackwareなどのLinuxディストリビューションで機能するはずです。

Centos 7、Redhat 7の場合:

yum -y install gcc Ruby-dev
0
Abdennour TOUMI