http://geryit.com/blog/2011/01/installing-mysql-with-Rails-on-mac-os-x-snow-leopard/ の指示に従いました。 macport経由のRuby)のインストール。
gem install mysqlを実行するたびに、次のエラーが発生します
bash-3.2# gem install mysql
Building native extensions. This could take a while...
ERROR: Error installing mysql:
ERROR: Failed to build gem native extension.
/opt/local/bin/Ruby extconf.rb
checking for mysql_ssl_set()... no
checking for rb_str_set_len()... no
checking for rb_thread_start_timer()... no
checking for mysql.h... no
checking for mysql/mysql.h... no
*** 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
--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=/opt/local/bin/Ruby
--with-mysql-config
--without-mysql-config
Gem files will remain installed in /opt/local/lib/Ruby/gems/1.8/gems/mysql-2.8.1 for inspection.
Results logged to /opt/local/lib/Ruby/gems/1.8/gems/mysql-2.8.1/ext/mysql_api/gem_make.out
この問題を解決するにはどうすればよいですか?パッケージファイル(.pkg)を使用して32ビットmysqlをインストールしました。また、Rubyは非常に初めてです...
更新4/26/11 5:11 pm ESTRVMをインストールし、更新Ruby to 1.9.2また、コメントに投稿されたリンクを確認しました。locate mysql_config
を実行したところ、結果は次のようになりました。
/usr/local/mysql-5.1.56-osx10.6-x86/bin/mysql_config
/usr/local/mysql-5.1.56-osx10.6-x86/man/man1/mysql_config.1
したがって、gem install mysql - -with-mysql-config=/usr/local/mysql-5.1.56-osx10.6-x86/bin/mysql_config
を試しましたが、それでも機能しません...ただし、新しいエラー情報を取得しました。
/Users/kyle/.rvm/rubies/Ruby-1.9.2-p180/lib/Ruby/1.9.1/mkmf.rb:368:in `try_do': The complier failed to generate an executable file. (RuntimeError)
You have to install development tools first.
from /Users/kyle/.rvm/rubies/Ruby-1.9.2-p180/lib/Ruby/1.9.1/mkmf.rb:435:in `try_link0'
from /Users/kyle/.rvm/rubies/Ruby-1.9.2-p180/lib/Ruby/1.9.1/mkmf.rb:440:in `try_link'
from /Users/kyle/.rvm/rubies/Ruby-1.9.2-p180/lib/Ruby/1.9.1/mkmf.rb:552:in `try_func'
from /Users/kyle/.rvm/rubies/Ruby-1.9.2-p180/lib/Ruby/1.9.1/mkmf.rb:797:in `block in have_func'
from /Users/kyle/.rvm/rubies/Ruby-1.9.2-p180/lib/Ruby/1.9.1/mkmf.rb:693:in `block in checking_for'
from /Users/kyle/.rvm/rubies/Ruby-1.9.2-p180/lib/Ruby/1.9.1/mkmf.rb:280:in `block (2 levels) in postpone'
from /Users/kyle/.rvm/rubies/Ruby-1.9.2-p180/lib/Ruby/1.9.1/mkmf.rb:254:in `open'
from /Users/kyle/.rvm/rubies/Ruby-1.9.2-p180/lib/Ruby/1.9.1/mkmf.rb:280:in `block in postpone'
from /Users/kyle/.rvm/rubies/Ruby-1.9.2-p180/lib/Ruby/1.9.1/mkmf.rb:254:in `open'
from /Users/kyle/.rvm/rubies/Ruby-1.9.2-p180/lib/Ruby/1.9.1/mkmf.rb:276:in `postpone'
from /Users/kyle/.rvm/rubies/Ruby-1.9.2-p180/lib/Ruby/1.9.1/mkmf.rb:692:in `checking_for'
from /Users/kyle/.rvm/rubies/Ruby-1.9.2-p180/lib/Ruby/1.9.1/mkmf.rb:796:in `have_func'
from extconf.rb:50:in `<main>'
Gem files will remain installed in /Users/kyle/.rvm/rubies/Ruby-1.9.2-p180/bin/th-mysql-config=/usr/local/mysql-5.1.56-osx10.6-x86/bin/mysql_config/gems/mysql-2.8.1 for inspection.
コメントしてくれた人たちに本当に感謝したい...そしてもっと助けが与えられたら本当に感謝している.....ダーンmysqlを2日間インストールしようとしていた...
システムに32ビットのMySQLをアンインストールして問題を解決し、5.1.5664ビットをインストールしました。
これが私と同じ問題を抱えている他の人に役立つことを願っています。
プログラム「mysql_config」は現在インストールされていません。次のように入力してインストールできます。
$ Sudo apt-get install libmysqlclient-dev
$ bundle install
bundle show [mysql2] # To find the location.
これを試して:
gem install mysql -- --with-mysql-config=/usr/local/mysql-5.1.56-osx10.6-x86/bin/mysql_config
(余分なダッシュに注意してください)
それでも問題が解決しない場合は、上記のMySQLの自作インストールを使用することを強くお勧めします。スープからナッツへのインストールについては、ここで読むことができます: アンインストールRuby on Rails on Mac OS X 10.6
Cent OSでも同じ問題が発生しましたが、mysql-develをインストールすることで解決しました。
yum install mysql mysql-server mysql-devel
この回答 に基づいて/usr/local/Cellar/mysql/5.6.12/bin/mysql_config
ファイルを編集して-Wno-null-conversion -Wno-unused-private-field
を削除しました。これは、mkmf.logが文句を言っていたエラーです。
私のセットアップはMacOSXで、RubyはRVMを使用してインストールされ、MySQLはhomebrewを使用してインストールされています。
bundler を使用している場合は、bundle config
を使用してgemのビルドパラメータを設定できます。これにより、ビルドオプションが~/.bundle/config
に保存されるため、次回ビルドする必要があります。あなたのgem、設定オプションはすでに設定されています、例:
bundle config build.mysql --with-mysql-config=/usr/local/mysql/bin/mysql_config
2018年11月現在のMacの場合
gem install mysql2 -v '0.4.8' -- --with-ldflags=-L/usr/local/opt/[email protected]/lib --with-cppflags=-I/usr/local/opt/[email protected]/include
よろしければ、homebrewを使用してmysqlをインストールするまったく異なるアプローチを試すことができます。
https://github.com/mxcl/homebrew
そして、それに基づいてgemをインストールしてみてください。