Installing Bower on Ubuntu

前端 未结 8 1119
孤城傲影
孤城傲影 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:22
    sudo ln -s /usr/bin/nodejs /usr/bin/node
    

    or install legacy nodejs:

    sudo apt-get install nodejs-legacy
    

    As seen in this GitHub issue.

    0 讨论(0)
  • 2021-01-29 18:22

    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

    0 讨论(0)
提交回复
热议问题