Installing nodejs and npm on linux

前端 未结 3 2071
一整个雨季
一整个雨季 2021-02-05 23:16

I have having a bit of an issue with installing nodejs and npm on my linux server (which is a pi running raspbian). I had everything set up and running using

su         


        
3条回答
  •  终归单人心
    2021-02-05 23:40

    I wrote in the terminal the following command lines I hope it is useful for the community.

    $ sudo apt install nodejs
    $ curl -L https://npmjs.org/install.sh | sudo sh 
    
    

    good luck!

提交回复
热议问题