- Electron Projects
- Denys Vuika
- 131字
- 2021-06-24 12:14:32
Installing Node.js on Ubuntu
Ubuntu usually doesn't ship with the Node.js and NPM tools out of the box. You need to install them separately.
To install Node.js, follow these steps:
- Run the following command:
sudo apt install -y nodejs
- Now, we need to verify that Node.js has been installed. You can check the version that you've installed in the Terminal application by using the following command:
node --version
The system's output, which will be the version's value, will be v8.11.4 or higher.
To install NPM, follow these steps:
- Use the following command:
sudo apt install -y npm
- The fastest way to check that NPM has been installed is to check its version. You can do so by using the following command:
npm --version
The version number should be 5.8.0 or higher.
推薦閱讀
- Java程序設(shè)計(慕課版)
- 深度實踐OpenStack:基于Python的OpenStack組件開發(fā)
- Mastering JavaScript Object-Oriented Programming
- JavaScript by Example
- Xamarin.Forms Projects
- bbPress Complete
- SQL經(jīng)典實例(第2版)
- Delphi開發(fā)典型模塊大全(修訂版)
- ROS機(jī)器人編程實戰(zhàn)
- 軟硬件綜合系統(tǒng)軟件需求建模及可靠性綜合試驗、分析、評價技術(shù)
- 網(wǎng)絡(luò)綜合布線與組網(wǎng)實戰(zhàn)指南
- 微服務(wù)設(shè)計
- GO語言編程從入門到實踐
- Mastering Linux Kernel Development
- Access 2010數(shù)據(jù)庫教程(微課版)