Last active
December 14, 2017 07:11
-
-
Save makmac213/b96b9cda8a722e2bf569fe3e9806d5db to your computer and use it in GitHub Desktop.
OSX Setup
This file contains hidden or 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
# 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