nodejs vs node on ubuntu 12.04

前端 未结 20 1949
Happy的楠姐
Happy的楠姐 2020-11-22 12:29

I installed nodejs on ubuntu from instructions given here

When I write node --version in the terminal I see this :
-bash: /usr/sbin/node: No

20条回答
  •  囚心锁ツ
    2020-11-22 13:07

    It's optional to remove the existing node and nodejs, but have to do alternatively install the latest 7.x nodejs.

    curl -sL https://deb.nodesource.com/setup_7.x | sudo -E bash -
    sudo apt-get install -y nodejs
    

提交回复
热议问题