-
Notifications
You must be signed in to change notification settings - Fork 1
Ubuntu Deploy
whancock edited this page Feb 4, 2012
·
1 revision
#ubuntu package manager sudo apt-get install build-essential git-core curl
#install rvm from source bash -s stable < <(curl -s https://raw.github.com/wayneeseguin/rvm/master/binscripts/rvm-installer)
#reload bash config file source ~/.bash_profile
#install extra required packages sudo apt-get install build-essential openssl libreadline6 libreadline6-dev curl git-core zlib1g zlib1g-dev libssl-dev libyaml-dev libsqlite3-0 libsqlite3-dev sqlite3 libxml2-dev libxslt-dev autoconf libc6-dev ncurses-dev automake libtool bison subversion
#use rvm to install whatever ruby versions needed rvm install 1.9.2
#switch to that version rvm --default use 1.9.2
#install rails gem install rails
#dunno what this is bundle install
#do something else rake db:migrate