Ubuntu 9.10에 MySQL Ruby Gem을 설치하는 방법은 무엇입니까?


9

MySQL 용 Ruby Gem 설치에 문제가 있습니다. 이것은 내가 실행중인 명령입니다.

sudo gem install mysql

이것은 내가 얻는 결과입니다.

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

/usr/bin/ruby1.8 extconf.rb
checking for mysql_query() in -lmysqlclient... no
checking for main() in -lm... yes
checking for mysql_query() in -lmysqlclient... no
checking for main() in -lz... yes
checking for mysql_query() in -lmysqlclient... no
checking for main() in -lsocket... no
checking for mysql_query() in -lmysqlclient... no
checking for main() in -lnsl... yes
checking for mysql_query() in -lmysqlclient... no
checking for main() in -lmygcc... no
checking for mysql_query() in -lmysqlclient... 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=/usr/bin/ruby1.8
    --with-mysql-config
    --without-mysql-config
    --with-mysql-dir
    --without-mysql-dir
    --with-mysql-include
    --without-mysql-include=${mysql-dir}/include
    --with-mysql-lib
    --without-mysql-lib=${mysql-dir}/lib
    --with-mysqlclientlib
    --without-mysqlclientlib
    --with-mlib
    --without-mlib
    --with-mysqlclientlib
    --without-mysqlclientlib
    --with-zlib
    --without-zlib
    --with-mysqlclientlib
    --without-mysqlclientlib
    --with-socketlib
    --without-socketlib
    --with-mysqlclientlib
    --without-mysqlclientlib
    --with-nsllib
    --without-nsllib
    --with-mysqlclientlib
    --without-mysqlclientlib
    --with-mygcclib
    --without-mygcclib
    --with-mysqlclientlib
    --without-mysqlclientlib


Gem files will remain installed in /usr/lib/ruby/gems/1.8/gems/mysql-2.8.1 for inspection.
Results logged to /usr/lib/ruby/gems/1.8/gems/mysql-2.8.1/ext/mysql_api/gem_make.out

이 기능을 설치하려면 무엇을해야합니까?

답변:


27

감사합니다. 이 실 설치에 실패한 이유는

... 패키지가 컴파일 될 때 잘못된 길을 가리키는 경로.

고맙게도 솔루션은 매우 간단합니다.

sudo gem uninstall mysql
sudo apt-get install libmysqlclient-dev -y
sudo gem install mysql 

노트 : mysql을 제거하려고하는데 오류 메시지가 나타나지만, 처음 설치되지 않았기 때문에 괜찮습니다. mysql gem을 설치하는 동안 오류와 비슷한 메시지가 나타납니다. No definition for next_result하지만 오류는 아닙니다. 이것은 문서를 설치할 때 발생합니다. 그것들은 단지 특정 기능에 대해 사용할 수있는 문서가 없다는 메시지입니다.


4

Ruby에서 MySQL을 사용하기 위해 꼭 필요한 보석은 아닙니다. Debian / Ubuntu에는 이미 이미 컴파일되고 준비된 동일한 코드가있는 패키지가 있습니다. 그냥 입력하십시오. sudo apt-get install libmysql-ruby.


4

Ubuntu Hardy, 8.04에서 나는 apt-get install with work를 얻었다.

sudo apt-get install libmysqlclient15-dev -y
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.