0

この投稿http://blog.teamtreehouse.com/installing-ruby-rails-and-mysql-on-os-x-lionに従いました。

Ruby と Rails を 1 か月間学んでいるので、Ruby にはかなり慣れています。また、いくつかのチュートリアルに従って得られた理解により、Rails の一部についても知っています。

しかし、私は連続して にgem install mysqlまたはそれgem install mysql2以前に失敗しrails new photos -d mysqlます。

私はすでに正常に終了brew install mysqlしてチェックしmysql -u rootました。

seodongju@Seoui-MacBook-Pro ~/Desktop/Projects$ sudo gem install mysql2 
Password: 
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 rb_hash_dup()... yes checking for rb_intern3()... 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.13 for inspection. Results logged to /usr/local/rvm/gems/ruby-2.0.0-p247/gems/mysql2-0.3.13/ext/mysql2/gem_make.out
4

1 に答える 1

-2

最初にマシンに MySQL をインストールする必要があります

ここからどうぞ

http://dev.mysql.com/downloads/installer

インストール後、Gemをインストールします

于 2013-07-21T18:24:40.243 に答える