Installing Bower on Ubuntu

前端 未结 8 1139
孤城傲影
孤城傲影 2021-01-29 17:50

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

8条回答
  •  庸人自扰
    2021-01-29 18:16

    First of all install nodejs:

    sudo apt-get install nodejs
    

    Then install npm:

    sudo apt-get install npm
    

    Then install bower:

    npm install -g 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.

提交回复
热议问题