在使用Rails 4.0及更高版本以及Ruby 2.0及更高版本时,您可能会遇到此问题。
如果您继续推进Rails环境的渐变,这是非常常见的问题。
要遵循的步骤 -
对于Windows系统 -
1.Download the the newest mysql-connector to c:\mysql-connector folder
2. gem install mysql2 -- '--with-mysql-include="C:\mysql-connector\include" --with-mysql-lib="C:\mysql-connector\lib"
希望它对你有用。 对于Ubuntu系统 -
1. open terminal (Ctrl+alt+T)
2. $ sudo apt-get install libmysqld-dev
Run bundle from your project directory
3. $ bundle
这将解决问题。我们也可以在这里看到解决方案。
答案 0 :(得分:4)
我通过以下步骤解决了这个问题 -