-
Notifications
You must be signed in to change notification settings - Fork 0
GIT Wiki
ktmrakesh edited this page Oct 2, 2014
·
4 revisions
sudo apt-get install git-core
git clone git://github.com/creationix/nvm.git ~/.nvm
[[ -s "$HOME/.nvm/nvm.sh" ]] && . "$HOME/.nvm/nvm.sh"
In this example I am going to install node v0.4.12. We first need open new bash session. You can also do this by typing bash again.
bash
nvm install v0.10.29 #This takes a while if you have low speed internet connection.
npm install -g gulp
First sudo apt-get update
and install dependencies
sudo apt-get install git-core curl zlib1g-dev build-essential libssl-dev libreadline-dev libyaml-dev libsqlite3-dev sqlite3 libxml2-dev libxslt1-dev libcurl4-openssl-dev python-software-properties
Then install rvm
to manage ruby versions
sudo apt-get install libgdbm-dev libncurses5-dev automake libtool bison libffi-dev
curl -L https://get.rvm.io | bash -s stable
source ~/.rvm/scripts/rvm
echo "source ~/.rvm/scripts/rvm" >> ~/.bashrc
Install ruby particular version and check!!!
rvm install 2.1.2
rvm use 2.1.2 --default
ruby -v
###Install SASS
gem install sass
###Install Express.JS
npm install express --save
###Install Jade
npm install ejs --save