使用npm install 报错 npm WARN tar zlib error: unexpected end of file
程序员文章站
2021-11-28 11:23:32
...
最近拉一个项目代码安装依赖遇到报错,本应该安装在node_modules目录下的文件全安装到node_modules/.staging目录下了,在这边记录一下解决方法
- 先删除安装失败的依赖
rm -rf node_modules/
- 清除缓存
npm cache clean
这个命令系统有可能不执行,换一个就好
npm cache verify
- 接下来有几种方法解决报错
方法一: 采用国内镜像
设置镜像:npm config set registry https://registry.npm.taobao.org
然后执行npm i
更建议通过cnpm使用
设置cnpm:npm install -g cnpm --registry=https://registry.npm.taobao.org
以后想用国内镜像就用cnpm,国外镜像就用npm
安装依赖:cnpm i
一般这样都可以安装上
方法二:执行npm install --no-package-lock
命令
原理不明,官方issues上推荐解决方法,大部分时候可以解决
方法三:用管理员身份安装
ctrl + R进入的cmd命令只有普通权限,而npm install安装新模块有的需要管理员权限,所以用管理员身份运行cmd,才能npm安装成功
Windows键输入命令,右键“以管理员身份运行”,cd到项目目录,执行npm安装,之后便安装成功,node_modules目录下各个模块正常,也没有.staging目录了
这个方法是比较少用的
上一篇: npm install 出错
下一篇: 使用webpack打包项目需要的包
推荐阅读
-
使用npm install 安装依赖报错 npm WARN tar zlib error: unexpected end of file
-
npm WARN tar zlib error: unexpected end of file
-
npm install 报错:error Unexpected end of JSON input while parsing near '...https://registry.npmj'的解决办法
-
运行npm install 遇到报错 zlib: unexpected end of file的解决方案
-
使用npm install 报错 npm WARN tar zlib error: unexpected end of file