Install Node.js on Ubuntu

后端 未结 18 1024
没有蜡笔的小新
没有蜡笔的小新 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 05:06

    For latest nodejs

    sudo apt-get install curl
    curl -sL https://deb.nodesource.com/setup_13.x | sudo -E bash -
    
    sudo apt-get install nodejs
    node -v 
    npm -v 
    

提交回复
热议问题