Skip to content

Instantly share code, notes, and snippets.

@biggers
Created January 9, 2018 03:50
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save biggers/c5bffb3e527439284c2295d9fe00fc14 to your computer and use it in GitHub Desktop.
Save biggers/c5bffb3e527439284c2295d9fe00fc14 to your computer and use it in GitHub Desktop.
.bashrc additions, for virtualenvwrapper and Python3 from Python.org
# you can omit the first (2) entries...
export PATH="$HOME/bin:/usr/local/bin:/usr/local/sbin:/usr/sbin::/sbin:/usr/bin:/bin"
export PATH=/Applications/Emacs.app/Contents/MacOS:$PATH
# 'virtualenvwrapper' support
export WORKON_HOME=$HOME/.virtualenvs
export VIRTUALENVWRAPPER_SCRIPT=/usr/local/bin/virtualenvwrapper.sh
source /usr/local/bin/virtualenvwrapper.sh
# for Python3 from Python.org
PYPATH=/Library/Frameworks/Python.framework/Versions/3.6
export PATH=${PYPATH}/bin:$PATH
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment