Home > Article > Web Front-end > How to delete node in nvm
Nvm method to delete node: 1. Download "nvm-setup.zip" and install it on the C drive; 2. Configure environment variables and check the version number through the "nvm -v" command; 3. Use the "nvm install" command to install the node; 4. Use the "nvm uninstall" command to delete the installed node.
The operating environment of this tutorial: Windows 10 system, node v7.6.0 version, Dell G3 computer.
nvm How to delete node?
nvm introduction and use, delete node
nvm is a node version management tool
Download nvm-setup. zip => Install on C drive
In this step, the latest version will be automatically configured. You only need the 360 of your computer. Just don’t block such devices
nvm -v
nvm install 版本
nvm use 版本
nvm install stable //安装最新版 node nvm install [node版本号] //安装指定版本的node nvm ls // 查看已安装版本方便切换 nvm use [node版本号] //切换到指定版本的node nvm alias default [node版本号] //设置默认版本
nvm uninstall 版本
Prompts you to manually go to the nvm installation directory to delete
node.js video tutorial"
The above is the detailed content of How to delete node in nvm. For more information, please follow other related articles on the PHP Chinese website!