Skip to content

Instantly share code, notes, and snippets.

@makmac213
Last active December 14, 2017 07:11
Show Gist options
  • Save makmac213/b96b9cda8a722e2bf569fe3e9806d5db to your computer and use it in GitHub Desktop.
Save makmac213/b96b9cda8a722e2bf569fe3e9806d5db to your computer and use it in GitHub Desktop.
OSX Setup
# homebrew
# https://brew.sh
$ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
# git
$ brew install git
# pip
$ sudo easy_install pip
# virtualenv
$ sudo pip install virtualenv
# virtualenvwrapper
$ sudo pip install virtualenvwrapper
# if you get an error with the six package
$ sudo pip install virtualenvwrapper --ignore-installed six
# https://virtualenvwrapper.readthedocs.io/en/latest/install.html
$ touch ~/.bashrc
$ vim ~/.bashrc
```
export WORKON_HOME=$HOME/.virtualenvs
export PROJECT_HOME=$HOME/Devel
source /usr/local/bin/virtualenvwrapper.sh
```
$ source ~/.bashrc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment