質問

バンドルインストールを行うと、次のエラーが発生します。

Installing mysql2 (0.3.10) with native extensions 
Gem::Installer::ExtensionBuildError: ERROR: Failed to build gem native extension.

    /Users/manish/.rvm/rubies/ruby-1.9.2-p290/bin/ruby extconf.rb 
checking for rb_thread_blocking_region()... yes
checking for rb_wait_for_single_fd()... 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=/Users/manish/.rvm/rubies/ruby-1.9.2-p290/bin/ruby
--with-mysql-config
--without-mysql-config
extconf.rb:33:in ``': No such file or directory - /usr/local/bin/mysql_config --cflags    (Errno::ENOENT)
from extconf.rb:33:in `<main>'


Gem files will remain installed in /Users/manish/.rvm/gems/ruby-1.9.2-p290/gems/mysql2- 0.3.10 for inspection.
Results logged to /Users/manish/.rvm/gems/ruby-1.9.2-p290/gems/mysql2-  0.3.10/ext/mysql2/gem_make.out
An error occured while installing mysql2 (0.3.10), and Bundler cannot continue.
Make sure that `gem install mysql2 -v '0.3.10'` succeeds before bundling.

Gemfileでは、mysqlは次のようなものです。

gem "mysql2", ">=0.3.0"

また、Brewを使用してMySQLをインストールしようとすると、次のエラーが発生します。

 sudo: unable to execute /usr/local/bin/brew: Permission denied

どうすればこれを解決できますか?

役に立ちましたか?

解決

私は自分の解決策を見つけました、そして、ここにあります:

ステップ1:以前にインストールしたRVMとXcodeをクリーンアップ

    => rm -rf ~/.rvm    
    => sudo rm -rf /Developer

ステップ2:App StoreからXcodeをインストールするか、インストーラーがLaunchPadに保存される場合があります。

ステップ3:HomeBrewをインストール:

    => mkdir -p /usr/local/Cellar
    => /usr/bin/ruby -e "$(curl -fsSL https://raw.github.com/gist/323731)"

ステップ4:RVMをインストールします

    => bash < <(curl -s https://rvm.beginrescueend.com/install/rvm)
    => echo '[[ -s "$HOME/.rvm/scripts/rvm" ]] && . "$HOME/.rvm/scripts/rvm" #  Load RVM function' >> ~/.bash_profile

ステップ5:Ruby 1.9.2をインストールします

    => rvm install 1.9.2
    => rvm use ruby-1.9.2 --default
    => gem install rails thin bundler
    => rvm install 1.9.2-head
    => brew install git ack wget curl redis memcached libmemcached colordiff imagemagick

ステップ6:mysqlをインストールします

    => brew install mysql
    => mysql_install_db --verbose --user=`whoami` --basedir="$(brew --prefix mysql)" --datadir=/usr/local/var/mysql --tmpdir=/tmp
    => mkdir -p ~/Library/LaunchAgents
    => cp /usr/local/Cellar/mysql/5.5.15/com.mysql.mysqld.plist ~/Library/LaunchAgents/
    => launchctl load -w ~/Library/LaunchAgents/com.mysql.mysqld.plist
    => mysql -u root
    => UPDATE mysql.user SET Password=PASSWORD('password') WHERE User='root';
    => FLUSH PRIVILEGES;

他のヒント

ライブラリをダウンロードして、その場所を手動で宝石の構築プロセスに旗として渡すことができますが、それは少し苦痛です。

MySQLは/usr/local/binを検索していました。これは、自家製のインストールに理にかなっていますが、Sudo Brewが機能しない場合、許可の問題があり、はるかに多くの問題が発生する可能性があります。

私はあなたをイライラさせ続けるb/cを正直に修正します。通常のダンスを修正する - ディスクの実用性を使用した修理許可、醸造医を実行して問題をチェックし、物事が悪くなった場合は破裂して再インストールします。

幸運を

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top