Installing Bower on Ubuntu
September 17, 2015
You can follow the following recipe to install Bower onto a recent Ubuntu installation:
apt-get install npm
npm install -g bowerNow you can try running bower
You may get the following error:
/usr/bin/env: node: No such file or directoryThis can be solved in using the following command:
ln -s /usr/bin/nodejs /usr/bin/nodeThis is because the Ubuntu package is called nodejs instead of node, which is what bower expects.
Happy bowering!