介紹 Ubuntu 18.04 環境下安裝Node.js,
會使用到的指令有 apt-get 以及 curl。
如果是macOS或Windows的話,官方有提供安裝包 (官網)
先更新套件清單跟安裝curl
1 2 |
sudo apt-get update sudo apt-get install curl |
接下來就可以來安裝Node.js (版本v13.x)
1 2 |
curl -sL https://deb.nodesource.com/setup_13.x | sudo -E bash - sudo apt-get install -y nodejs |
安裝完成後,確認安裝版本。
1 |
node -v |
參考資料
https://github.com/nodesource/distributions