1.1. Pythonbrew
curl -kL https://raw.github.com/utahta/pythonbrew/master/pythonbrew-install | bash
alias pyb='pythonbrew'
1.2. Python, pip, and setuptools
pyb install --no-test 2.7.2
pyb use 2.7.2
deactivate
rm -r ~/.pythonbrew/venvs/Python-2.7.2/heroku
pyb venv create heroku --no-site-packages
pyb venv use heroku
1.4. RVM
bash < <(curl -s https://rvm.beginrescueend.com/install/rvm)
rvm get latest
1.5. Ruby and TextMate settings
rvm install 1.9.2-p290
rvm --default use 1.9.2-p290
rvm @textmate --create
rvm wrapper default@textmate textmate
In TextMate preferences
TM_RUBY=/Users/andrei/.rvm/bin/textmate_ruby
1.6. Homebrew
ruby -e "$(curl -fsSL https://raw.github.com/gist/323731)"
1.7. Node.js
brew install node
1.8. npm
curl http://npmjs.org/install.sh | clean=yes sh