2016-10-17 3 views
1

Der Versuch, eine bestimmte Version zu installieren Mysql2 Gem. Und ich bekomme diese:Fehler bei der Installation von Mysql2 unter OSX

sudo gem install mysql2 -v '0.3.20' 
Building native extensions. This could take a while... 
ERROR: Error installing mysql2: 
    ERROR: Failed to build gem native extension. 

    /usr/local/var/rbenv/versions/2.2.3/bin/ruby -r ./siteconf20161017-56699-1dsu6v9.rb extconf.rb 
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 
----- 
Using mysql_config at /usr/local/bin/mysql_config 
----- 
checking for 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.16/lib 
----- 
creating Makefile 

make "DESTDIR=" clean 

make "DESTDIR=" 
compiling client.c 
compiling infile.c 
compiling mysql2_ext.c 
compiling result.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 

Als Referenz lief ich brew install mysql vorher und es lief erfolgreich. Ich habe auch versucht, alle Versionen von brew 's mysql Referenzen nur für den Fall zu deinstallieren.

Gibt es etwas, das fehlt? Ich habe mich umgesehen und die meisten Seiten zeigen wieder darauf, dass Sie brew install mysql ausführen, die ich habe.

Falls ich mit meiner obigen Erklärung nicht mehr klar war, habe ich das Scheitern nach bin immer erfolgreich läuft brew install mysql der Fehler aus versucht, das Juwel danach über gem install mysql2 -v '0.3.20'

Jede Idee zu installieren? Danke

+0

Mögliches Duplikat von ["Gem install mysql2" auf dem Mac mit MAMP 2.2] (http://stackoverflow.com/questions/20935236/gem-install-mysql2-on-mac-with-mamp-2-2) – Dez

+0

@msmith lassen Sie uns wissen, wie das oben genannte Ref funktioniert für Sie – Drew

+0

Das sagt die gleiche Sache wie das, was ich tat, ich installierte es erfolgreich mit brauen, aber ich kann nicht wirklich erfolgreich installieren das Juwel IE 'gem install mysql -v '0.3.20 "Danach – msmith1114

Antwort

2

Nur als Referenz, was am Ende funktionierte war xcode-select --install, die die OpenSSL-Bibliotheken zu installieren schien, die sich um das ld: library not found for -lssl Problem kümmerte.

Verwandte Themen