Macにpyenvとpyenv-virtualenvを入れる

MacのバージョンはHigh Sierra pyenv/pyenv-virtualenvのインストール # pyenv brew install pyenv # pyenv-virtualenv brew install pyenv-virtualenv インストール後、.bash_profilenに以下を追記 $ vi ~/.bash_profile # pyenv export PYENV_ROOT="${HOME}/.pyenv" if [ -d "${PYENV_ROOT}" ]; then export PATH=${PYEN…