Created
January 6, 2018 20:53
-
-
Save matheusportela/911e9d48e243a0af808de6c7bc536063 to your computer and use it in GitHub Desktop.
Environment variables for virtualenvwrapper in Mac OS X with Python 3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ brew install python3 | |
$ pip3 install virtualenv virtualenvwrapper | |
$ vim .bash_profile # or .zshrc | |
# Virtualenv variables | |
export WORKON_HOME=/Users/portela/.virtualenvs | |
export VIRTUALENVWRAPPER_PYTHON=$(which python3) | |
source /usr/local/bin/virtualenvwrapper.sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment