Cannot install mysql2 gem

前端 未结 9 2371
死守一世寂寞
死守一世寂寞 2020-12-05 01:20

I\'m unable to install the mysql2 gem in my Windows7 x64 system. I tried using both the 32-bit and 64-bit versions of MySQL server but none got me any further.

I ins

9条回答
  •  时光说笑
    2020-12-05 01:24

    Here's what worked for me using: Win7 64/MySQL 5.5 64-bit/Ruby 1.9.2:

    1. Download libmysql.dll.
    2. Copy the above libmysql.dll to C:\Ruby192\bin AND C:\Ruby192\lib, or wherever your lib and bin are.
    3. Run:
    gem install mysql2 -- '--with-mysql-lib="c:\Program Files\MySQL\MySQL Server 5.5\lib" --with-mysql-include="c:\Program Files\MySQL\MySQL Server 5.5\include" --with-mysql-dir="c:\Program Files\MySQL\MySQL Server 5.5"'
    

    Good luck.

提交回复
热议问题