Install Node.js on Ubuntu

后端 未结 18 1052
没有蜡笔的小新
没有蜡笔的小新 2020-12-04 04:39

I\'m trying install Node.js on Ubuntu 12.10, but the terminal shows me an error about lost packages. I tried with this:

sudo apt-get install python-software-         


        
18条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2020-12-04 04:53

    You can also compile it from source like this

    git clone git://github.com/ry/node.git
    cd node
    ./configure
    make
    sudo make install
    

    Find detailed instructions here http://howtonode.org/how-to-install-nodejs

提交回复
热议问题