Monday, August 11, 2014

Install Bower in Linux

Bower works by fetching and installing packages from all over, taking care of hunting, finding, downloading, and saving the stuff you’re looking for.

To install bower in Linux you must install "nodejs" and "npm". To do that type following in the terminal.

sudo apt-get install nodejs-legacy -y
sudo apt-get install npm - y

After that install bower using npm by following,

sudo npm install -g bower

To work with bower you need "git". Install git by,

sudo apt-get install git -y

If bower is installed correctly we can get the version by,

bower -v 

Thats it..
Next time we will use bower to web projects.....


No comments:

Post a Comment