- download and install xcode
- XCode and enable Command Line Tools
- download and install mysql-server
nano ~/.bash_profile
add the following
export ARCHFLAGS="-arch x86_64"
export DYLD_LIBRARY_PATH=$DYLD_LIBRARY_PATH:/usr/local/mysql/lib
export PATH=$PATH:/usr/local/mysql/bin
ruby -e "$(curl -fsSL https://raw.github.com/mxcl/homebrew/master/Library/Contributions/install_homebrew.rb)"
brew install git
brew update
brew install bash-completion byobu ssh-copy-id wget
sudo easy_install pip
sudo pip install virtualenv
curl -O http://www.ijg.org/files/jpegsrc.v8c.tar.gz
tar -xvzf jpegsrc.v8c.tar.gz
cd jpeg-8c
./configure
make
sudo make install
cd ../
curl -O http://ftp.igh.cnrs.fr/pub/nongnu/freetype/freetype-2.4.5.tar.gz
tar -xvzf freetype-2.4.5.tar.gz
cd freetype-2.4.5
./configure
make
sudo make install
cd ../
ssh-keygen -t rsa -C "[email protected]"
pbcopy < /User/user/.ssh/id_rsa.pub
log into http://github.com and paste from your clipboard into SSH Keys on GitHub.
ssh -T [email protected]
git config --global user.name "Bob Builder"
git config --global user.email "[email protected]"
git config --global core.autocrlf input
Create the first environment
mkdir ~/Sites/environments
cd ~/Sites/environments
virtualenv liftcaregiving
enter your new environment
source ~/Sites/environments/liftcaregiving/bin/activate
clone the lift repo and satisfy the requirements of that repo
cd ../Sites
git clone [email protected]:teamcolab/Lift--Caregiving.git
pip install -r ~/Sites/Lift--Caregiving/requirements.txt
You are up and running in magical land of v-envs!!
ruby -e "$(curl -fsSkL raw.github.com/mxcl/homebrew/go)"
command changed