NVM安装后多个node时,node_modules是空的,以v12.21.0为例

2022/2/21 17:28:14

本文主要是介绍NVM安装后多个node时,node_modules是空的,以v12.21.0为例,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

一、在使用NVM管理node时,进行v12.21.0新版本安装遇到

Downloading node.js version 12.21.0 (64-bit)...
Complete
Downloading npm version 6.14.11... Download failed. Rolling Back.
Rollback failed. remove D:\nvm\temp\npm-v6.14.11.zip: The process cannot access the file because it is being used by another process.
Could not download npm for node v12.21.0.
Please visit https://github.com/npm/cli/releases/tag/v6.14.11 to download npm.
It should be extracted to D:\nvm\v12.21.0

二、此时v12.21.0的文件夹已经创建,但是node_modules是空的在这里插入图片描述

三、解决办法:下载在报错信息中提供的npm版本

Please visit https://github.com/npm/cli/releases/tag/v6.14.11 to download npm.

https://github.com/npm/cli/releases/tag/v6.14.11
在这里插入图片描述

四、解压后将源文件修改名称为 npm

在这里插入图片描述

五、将修改后npm文件放到 /v12.21.0/node_modules 下

在这里插入图片描述

六、将 /v12.21.0/node_modules/npm/bin 文件夹下的 npm和npm.cmd 文件,剪切放到 /v12.21.0/ 下 ,和 node_modules同级显示

在这里插入图片描述

七、使用管理员执行cmd命令:nvm use 12.21.0

如果提示乱码,需要使用管理员cmd执行
在这里插入图片描述在这里插入图片描述

八、查询是否安装成功

在这里插入图片描述



这篇关于NVM安装后多个node时,node_modules是空的,以v12.21.0为例的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程