I'm trying to install Bower on XUbuntu 13.10, following the instructions on the Bower home page, after doing sudo apt-get install npm
and sudo npm install -g bower
I get the following after issuing bower
on the command line:
/usr/bin/env: node: No such file or directory
I then install Node (even though I assume that would not be unnecessary since Bower's only dependency would be NPM, correct?). Anyhow, after I install node with sudo apt-get install node
any of the Bower commands, such as bower help
, simply don't do anything, i.e. output nothing.
How to install Bower on Ubuntu (preferably without manually downloading various versions of things)?
installs nodejs
installs npm
installs bower via npm
First of all install nodejs:
Then install npm:
Then install bower:
For any of the npm package tutorial visit: https://www.npmjs.com/
Here just search the package and you can find how to install, documentation and tutorials as well.
P.S. This is just a very common solution. If your problem still exists you can try the advanced one.
on Ubuntu 12.04 and the packaged version of NodeJs is too old to install Bower using the PPA
When this has installed, check the version:
Now install Bower:
This will fetch and install Bower globally.
At Least from Ubuntu 12.04, an old version (0.6.x) of Node is in the standard repository. To install, just run:
NPM comes with latest version of nodejs. Once you have that, then run
Should be good to go after that. You may need to run some updates, but it should be fairly straight forward.
Hi another solution to this problem is to simply add the node nodejs binary folder to your PATH using the following command:
ln -s /usr/bin/nodejs /usr/bin/node
See NPM GitHub for better explanation
Ubuntu 14.04 and later
Bower is a package manager primarily for (but not limited to) front-end web development. In Ubuntu 16.04 and later Bower package manager can be quickly and easily installed from the Ubuntu Software app. Open Ubuntu Software, search for "bower" and click the Install button to install it. In Ubuntu 14.04 and later open the terminal and type: