Skip to content

Instantly share code, notes, and snippets.

@victorpre
Forked from fernandoaleman/mysql2-mojave.md
Last active September 6, 2022 16:04
Show Gist options
  • Save victorpre/2114f507edbe5536138fc41d84d050d3 to your computer and use it in GitHub Desktop.
Save victorpre/2114f507edbe5536138fc41d84d050d3 to your computer and use it in GitHub Desktop.
Install mysql2 on MacOS Mojave

Problem

Installing mysql2 gem errors on MacOS Mojave.

Solution

Make sure openssl is installed on Mac via Homebrew.

brew install openssl

Install mysql2 gem.

gem install mysql2 -v '0.5.4' -- --with-ldflags=-L/opt/homebrew/opt/openssl@3/lib --with-cppflags=-I/opt/homebrew/opt/openssl@3/include
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment