1

Xcodeなしでレール用のMySQL gemをインストールできる方法はありますか? 多くのサイトで、XCode をインストールのオプション要件として言及しています。ただし、コマンド ライン ツールはインストールされています。

XCodeなしでrails、ruby、homebrew、MacPortsをインストールしましたが、MySql gemをインストールできませんでした

注: Xcode 用のコマンド ライン ツールをインストールしました。しかし、完全な Xcode ではありません。

私はこれらの参照に従っていますが、

http://scotty-t.com/2012/04/02/intstalling-mysql-5-5-on-os-x-mountain-lion/

bash_profileにパスを設定して

しかし、試行中にこれらのエラーが発生し続けます

sudo gem install mysql

エラー

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

/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/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 --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=/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby --with-mysql-config --without-mysql-config

Gem files will remain installed in /Library/Ruby/Gems/1.8/gems/mysql-2.9.0 for inspection. Results logged to /Library/Ruby/Gems/1.8/gems/mysql-2.9.0/ext/mysql_api/gem_make.out

最初に XCode をインストールする必要がありますか? 前もって感謝します!

4

2 に答える 2

1

実行中に、データベースではなくmysqlという名前sudo gem install mysqlのをインストールします。gemこのgemlibmysqlは、mysqlデータベースに付属しているという名前のファイルに依存しています。

つまり、最初にmysql dbをマシンにインストールしてから、gemをインストールする必要があります。そうしないと、必要なファイルが見つからないため、gemをビルドできません。

あなたは自作を持っているので、execによってmysqldbをインストールすることができますbrew install mysql。その後、sudo gem install mysql動作する可能性があります。

于 2012-12-14T05:03:29.893 に答える
0

mysql-devel をインストールしましたか? そうでない場合は、これを試してください

$ sudo yum install mysql-devel ;sorry it's for fedora

ライオンのためにやる

$ gem install mysql

それでもエラーが発生する場合は、gem をインストールするときに構成パスを追加してみてください。

于 2012-12-11T13:00:58.863 に答える