Skip to content

Instantly share code, notes, and snippets.

@srockstyle
Last active September 9, 2019 08:39
Show Gist options
  • Save srockstyle/af179084786d2dc96a5c2c9adeded5c0 to your computer and use it in GitHub Desktop.
Save srockstyle/af179084786d2dc96a5c2c9adeded5c0 to your computer and use it in GitHub Desktop.
## -------------
## macOS
## -------------
brew install [email protected] # [email protected] / default mysql8
## ~/.bash_profile or ~/.zshrc
export PATH="/usr/local/opt/[email protected]/bin:$PATH"
export LDFLAGS="-L/usr/local/opt/[email protected]/lib"
export CPPFLAGS="-I/usr/local/opt/[email protected]/include"
export PKG_CONFIG_PATH="/usr/local/opt/[email protected]/lib/pkgconfig"
## source ~/.bash_profile or ~/.zshrc
# cd application_dir
gem install mysql2 # or bundle install
## -------------
## Linux (redhat)
## -------------
yum install mysql mysql-devel
gem install mysql2 # or bundle install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment