😀nvm allows you to quickly install and use different versions of node via the command line.

https://github.com/nvm-sh/nvm

// check version
node -v || node --version

// list locally installed versions of node
nvm ls

// list remove available versions of node
nvm ls-remote

// install specific version of node
nvm install 18.16.1

// set default version of node
nvm alias default 18.16.1

// switch version of node
nvm use 20.5.1

// install latest LTS version of node (Long Term Support)
nvm install --lts

// install latest stable version of node
nvm install stable

Lỗi không cài được node 14 có thể là do phiên bản nvm khi cài version 1.1.12 vấn đề này được giải quyết

Nếu bị lỗi NPM is known not to run on Node.js v9.2.1

Thì xóa thư mục đi

Last updated

Was this helpful?