I'm sorry, it's almost a memo for myself.
Homebrew
bash
brew doctor
brew update
Xcode
bash
xcode-select --install
pyenv
Installation
bash
brew install pyenv
pyenv install 3.6.1
pyenv global 3.6.1
Path setting
bash
export PYENV_ROOT="$HOME/.pyenv"
export PATH="$PYENV_ROOT/bin:$PATH"
eval "$(pyenv init -)"
pip installation
easy_install pip
Visual Studio Code Add the following to the preferences
json
"python.venvPath": "~/.pyenv"
Recommended Posts