Я устанавливаю Ruby 2, Rails 4 и MySQL (с доморощенным).Установить mysql2 на Mac OS
Я попытался установить камень «mysql2», но я получил это сообщение:
gem install mysql2
Building native extensions. This could take a while...
ERROR: Error installing mysql2:
ERROR: Failed to build gem native extension.
/usr/local/rvm/rubies/ruby-2.0.0-p247/bin/ruby extconf.rb
checking for rb_thread_blocking_region()... yes
checking for rb_wait_for_single_fd()... yes
checking for mysql.h... no
checking for mysql/mysql.h... no
-----
mysql.h is missing. please check your installation of mysql and try again.
-----
*** 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=/usr/local/rvm/rubies/ruby-2.0.0-p247/bin/ruby
--with-mysql-config
--without-mysql-config
Gem files will remain installed in /usr/local/rvm/gems/ruby-2.0.0-p247/gems/mysql2-0.3.11 for inspection.
Results logged to /usr/local/rvm/gems/ruby-2.0.0-p247/gems/mysql2-0.3.11/ext/mysql2/gem_make.out
Можете ли вы мне помочь?
Отсутствует 'mysql.h', вероятно, означает, что вам не хватает пакета mysql-devel (или что бы он ни был в osx), который предоставил заголовки/библиотеки для компиляции поддержки mysql в другие приложения. –
Вам не хватает заголовков 'mysql'. Это может быть в отдельном пакете (в дистрибутивных пакетах Linux это будет нечто вроде 'mysql-devel'). – zneak
@spullen, я использовал homebrew для установки mysql – guilb