Ubuntu 安裝 nodejs
請盡量避免在 Ubuntu 上使用 apt-get 來安裝 node.js,如果你已經這么做了,請手動移除
sudo apt-get purge nodejs && sudo apt-get autoremove && sudo apt-get autoclean
使用 nvm 來安裝
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.11/install.sh | bash
查看 nvm 是否安裝成功
nvm --version
查看 nodejs 可以安裝的所有版本
nvm ls-remote
目前 nodejs 最新的長期支持版為 12.18.2
nvm install 12.18.2
查看 nodejs 版本
node -v