Skip to content
This repository has been archived by the owner on Jul 24, 2020. It is now read-only.

Installing mysql2 Gem

Chris Cadden edited this page Jan 3, 2019 · 1 revision

MacOS

You will need to remove and replace the up-to-date version of mysql on your machine.

# remove default mysql on your machine
brew unlink mysql
brew uninstall mysql
# install older mysql version
brew install mysql@5.6
# put the program in your path
brew link mysql@5.6 --force

bundle install should succeed after running this.