Skip to content

Instantly share code, notes, and snippets.

@RichardBlair
Created May 29, 2012 23:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save RichardBlair/2831458 to your computer and use it in GitHub Desktop.
Save RichardBlair/2831458 to your computer and use it in GitHub Desktop.
Install dev tools on ubuntu
DEBIAN_FRONTEND=noninteractive sudo apt-get -y install git-core git-gui git-doc redis-server mysql-server mongodb postresql ruby-full libmysqlclient15-dev libxml2-dev libxslt-dev python-setuptools python-dev
#install pip and virtualenv
sudo easy_install pip
sudo pip install virtualenv
sudo pip install virtualenvwrapper
#setup virtualenvs
mkdir ~/virtualenvs
echo "export WORKON_HOME=~/virtualenvs" >> ~/.zshrc
echo "source /usr/local/bin/virtualenvwrapper.sh" >> ~/.zshrc
echo "export PIP_VIRTUALENV_BASE=~/virtualenvs" >> ~/.zshrc
source ~/.zshrc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment