mynote/nodejs/install.md
2017-12-02 23:10:36 +08:00

23 lines
407 B
Markdown

# install nodejs npm
- refer to https://segmentfault.com/a/1190000007542620
### install and update
``` bash
sudo apt install nodejs
sudo apt install npm
sudo npm install n@latest -g
sudo n stable
npm install npm@latest -g
node -v
npm -v
```
- if error: /usr/bin/env: node: No such file or directory
> ln -s /usr/bin/nodejs /usr/bin/node
- if old nodejs still exist
> sudo apt-get purge nodejs