Skip to content

Instantly share code, notes, and snippets.

@nyumatova
nyumatova / install.sh
Created January 23, 2012 05:52
Vagrant install
bash -s stable < <(curl -s https://raw.github.com/wayneeseguin/rvm/master/binscripts/rvm-installer)
echo '[[ -s "$HOME/.rvm/scripts/rvm" ]] && . "$HOME/.rvm/scripts/rvm" # Load RVM function' >> ~/.bash_profile
source ~/.bash_profile
rvm install 1.9.3 --with-gcc=clang
rvm use 1.9.3 --default
gem update --system
gem install vagrant
@nyumatova
nyumatova / install.sh
Created January 9, 2012 16:49
Virtualenv
sudo apt-get -y install git
sudo apt-get -y install curl
sudo apt-get -y install postgresql
sudo apt-get -y install libpq-dev
sudo apt-get -y install python-dev
sudo apt-get -y install libjpeg8-dev
sudo apt-get -y install libfreetype6-dev
curl http://python-distribute.org/distribute_setup.py | sudo python
curl https://raw.github.com/pypa/pip/master/contrib/get-pip.py | sudo python