Skip to content

Instantly share code, notes, and snippets.

@jennifersmith
Created April 23, 2012 15:21
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save jennifersmith/2471603 to your computer and use it in GitHub Desktop.
# if you already have postgres installed
mkdir /tmp/postg
sudo mv /usr/include/pg* /tmp/postg
gem uninstall pg
bundle install
#Installing postgres on the LION!
brew update
brew install postgresql
# create database
initdb /usr/local/var/postgres
# copy to launch agents
cp /usr/local/Cellar/postgresql/9.1.3/homebrew.mxcl.postgresql.plist ~/Library/LaunchAgents/
launchctl load -w ~/Library/LaunchAgents/homebrew.mxcl.postgresql.plist
launchctl start homebrew.mxcl.postgresql
@aaronsw
Copy link

aaronsw commented Apr 23, 2012

Move old postgres out of the way:

mkdir /tmp/postg
mv /usr/include/pg* /tmp/postg
gem uninstall pg
bundle install

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment