This is always an annoying process, especially when you are setting up a new computer. I assume you are using macOS + homebrew. I also assume that you want to run an older version of MySQL (although the instructions should be adaptable).
$ brew install [email protected] # change the version if needed
$ brew install [email protected] # you probably already have this installed
At the end of each install, brew gives you some info. You can always see this again with:
$ brew info [email protected]
Whether installing the gem through bundler or directly with the gem install
command, you will need to configure some build flags. The values of these flags
come from whatever the brew info
command tells you. Please customize the flag
values below as needed.
$ bundle config build.mysql2 --with-mysql-config=/usr/local/opt/[email protected]/bin/mysql_config --with-ldflags="-L/usr/local/opt/[email protected]/lib -L/usr/local/opt/[email protected]/lib" --with-cppflags="-I/usr/local/opt/[email protected]/include -I/usr/local/opt/[email protected]/include"
$ bundle install
Change the gem version as needed.
gem install mysql -v '0.5.2' -- --with-mysql-config=/usr/local/opt/[email protected]/bin/mysql_config --with-ldflags="-L/usr/local/opt/[email protected]/lib -L/usr/local/opt/[email protected]/lib" --with-cppflags="-I/usr/local/opt/[email protected]/include -I/usr/local/opt/[email protected]/include"