HomebrewとMysqlの環境構築
Homwbrewを用意する
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
必要に応じて
brew update
権限の変更
sudo chown -R `whoami`:admin /usr/local/bin
rubyインストール
brew install rbenv ruby-build
rbenvをターミナルから使えるように
echo 'eval "$(rbenv init -)"' >> ~/.zshrc
zshrcの変更を反映
source ~/.zshrc
readlineをインストール
brew install readline
brew link readline --force
rubyインストール
RUBY_CONFIGURE_OPTS="--with-readline-dir=$(brew --prefix readline)"
rbenv install
mysqlをインストール
@以下はお好み?
brew install [email protected]
brew reinstall https://raw.githubusercontent.com/Homebrew/homebrew-core/f171f1c74/Formula/[email protected]
自動起動設定
mkdir ~/Library/LaunchAgents
ln -sfv /usr/local/opt/mysql\@5.6/*.plist ~/Library/LaunchAgents
launchctl load ~/Library/LaunchAgents/homebrew.mxcl.mysql\@5.6.plist
ターミナルで使えるように
echo 'export PATH="/usr/local/opt/[email protected]/bin:$PATH"' >> ~/.zshrc
source ~/.zshrc
Author And Source
この問題について(HomebrewとMysqlの環境構築), 我々は、より多くの情報をここで見つけました https://qiita.com/ueda-TK/items/89d3f8e389a9c2751428著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .