2017-01-21 11 views
2

私はラーニングレールで使用するmysql2 gemをインストールしようとしていますが、動作しません。 mysqlやrubyを再インストールしても動作しません。 ARCHFLAGSの使用は機能しません。私はapt-get libmysqlclient-devを使うことができません。私のMacにはUbuntuサーバーがなく、とにかくhomebrewと一緒にインストールしたときにmysqlに組み込まれている依存関係ではないでしょうか?また、私は最新のXcode(8.2.1)を持っています。私が行ったように、まさにそれらが何を意味するかgem install mysql2が動作しません

gem install mysql2 
sudo gem install mysql2 (if the error was permission denied.) 
sudo gem install mysql2 -v '0.4.5' -- --with-mysql-config=/usr/local/Cellar/mysql/5.7.17/bin/mysql_config 
ARCHFLAGS=-Wno-error=unused-command-line-argument-hard-error-in-future sudo gem install mysql2 -v '0.4.5' 

わからない:

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

    current directory: /Users/username/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/mysql2-0.4.5/ext/mysql2 
/Users/username/.rbenv/versions/2.3.1/bin/ruby -r ./siteconf20170121-4906-1lcyftl.rb extconf.rb 
checking for rb_absint_size()... yes 
checking for rb_absint_singlebit_p()... yes 
checking for ruby/thread.h... yes 
checking for rb_thread_call_without_gvl() in ruby/thread.h... yes 
checking for rb_thread_blocking_region()... no 
checking for rb_wait_for_single_fd()... yes 
checking for rb_hash_dup()... yes 
checking for rb_intern3()... yes 
checking for rb_big_cmp()... yes 
----- 
Using mysql_config at /usr/local/bin/mysql_config 
----- 
checking for mysql.h... yes 
checking for SSL_MODE_DISABLED in mysql.h... yes 
checking for SSL_MODE_PREFERRED in mysql.h... yes 
checking for SSL_MODE_REQUIRED in mysql.h... yes 
checking for SSL_MODE_VERIFY_CA in mysql.h... yes 
checking for SSL_MODE_VERIFY_IDENTITY in mysql.h... yes 
checking for errmsg.h... yes 
checking for mysqld_error.h... yes 
----- 
Don't know how to set rpath on your system, if MySQL libraries are not in path mysql2 may not load 
----- 
----- 
Setting libpath to /usr/local/Cellar/mysql/5.7.17/lib 
----- 
creating Makefile 

To see why this extension failed to compile, please check the mkmf.log which can be found here: 

    /Users/username/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/extensions/x86_64-darwin-16/2.3.0-static/mysql2-0.4.5/mkmf.log 

current directory: /Users/username/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/mysql2-0.4.5/ext/mysql2 
make "DESTDIR=" clean 

current directory: /Users/username/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/mysql2-0.4.5/ext/mysql2 
make "DESTDIR=" 
compiling client.c 
compiling infile.c 
compiling mysql2_ext.c 
compiling result.c 
compiling statement.c 
linking shared-object mysql2/mysql2.bundle 
ld: library not found for -lssl 
clang: error: linker command failed with exit code 1 (use -v to see invocation) 
make: *** [mysql2.bundle] Error 1 

make failed, exit code 2 

Gem files will remain installed in /Users/username/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/mysql2-0.4.5 for inspection. 
Results logged to /Users/username/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/extensions/x86_64-darwin-16/2.3.0-static/mysql2-0.4.5/gem_make.out 

コマンド私はmysql2をインストールしようとしたした:これは、(実際のユーザ名の代わりにユーザー名を持つ)完全なエラーメッセージです彼らは同様の投稿からのアドバイスを受けています。

助けてください。ありがとう!あなたは以下が含まれるように環境変数を変更する必要が

+1

mysql2のインストールに使用するコマンドを投稿して、完全なエラーメッセージを追加してもいいですか? – spickermann

答えて

1

(ちょうどMySQL2宝石の目的のバージョンを0.0.00に置き換える:

gem install mysql2 -v '0.0.00' -- --with-ldflags=-L/usr/local/opt/openssl/lib --with-cppflags=-I/usr/local/opt/openssl/include 

私はまた、あなたの$PATHをチェックし、それがMySQLの宝石が含まれていることを確認するだろう上記の行はうまくいくはずです(非常に似た問題があります)

+0

ありがとうございました これは数時間の研究と数十回の試みの後に働いた。また、それが何を意味するかを学ぶために:D。 – Becarev

関連する問題