Install pyenvusing brewbrew install pyenv # using your own profile # use ~/.bashrc or ~/.bash_profile # ~/.zshrc when using zsh echo 'export PYENV_ROOT="$HOME/.pyenv"' >> ~/.bash_profile echo 'export PATH="$PYENV_ROOT/bin:$PATH"' >> ~/.bash_profile echo 'eval "$(pyenv init -)"' >> ~/.bash_profile source ~/.bash_profile Install virtualenvusing brewbrew install pyenv-virtualenv echo 'eval "$(pyenv..