Help with command using Ubuntu #421
-
I'm trying to run "npm i --production && npm start |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
NPM is installed alongside Node.js by default, and the easiest way to correctly install Node.js on Ubuntu is to first install NVM, then (after restarting your terminal) run |
Beta Was this translation helpful? Give feedback.
NPM is installed alongside Node.js by default, and the easiest way to correctly install Node.js on Ubuntu is to first install NVM, then (after restarting your terminal) run
nvm install node
.You should then be able to do
node -v
andnpm -v
successfully.