Home >Database >Mysql Tutorial >How can I use libmysqlclient15-dev for Ruby gem compilation on a Mac?
Question:
Can Mac computers use libmysqlclient15-dev for Ruby gem compilation? If so, where can it be found?
Answer:
OSX does not natively support libmysqlclient15-dev. Instead, you should install mysql using the Homebrew package manager:
brew install mysql
This command should resolve the compilation error you are encountering with the Ruby gem.
The above is the detailed content of How can I use libmysqlclient15-dev for Ruby gem compilation on a Mac?. For more information, please follow other related articles on the PHP Chinese website!