执行 npm cache clean报错

C:\Users\you name>npm cache clean
npm ERR! As of [email protected], the npm cache self-heals from corruption issues and data extracted from the cache is guaranteed to be valid. If you want to make sure everything is consistent, use ‘npm cache verify‘ instead. On the other hand, if you‘re debugging an issue with the installer, you can use `npm install --cache /tmp/empty-cache` to use a temporary cache instead of nuking the actual one.
npm ERR!
npm ERR! If you‘re sure you want to delete the entire cache, rerun this command with --force.

npm ERR! A complete log of this run can be found in:
npm ERR!     C:\Users\you name\AppData\Roaming\npm-cache\_logs\2019-05-12T07_07_25_826Z-debug.log

解决方案 由于 npm 5 使用了新的包管理模式,所以在升级之后,请先清空一下本地缓存:

npm cache clean --force 。

如果上边没办法解决问题,可以尝试下边的指令:

npm cache clear --force && npm install --no-shrinkwrap --update-binary

原文地址:https://www.cnblogs.com/wysk/p/10852349.html

时间: 2024-10-22 17:26:58

执行 npm cache clean报错的相关文章

vue-electron 使用sqlite3数据库,执行npm run build 报错 .NET Framework 2.0 SDK,Microsoft Visual Studio 2005[C:\temp\wechat\node_modules\sqlite3\build\binding.sln]

问题描述 vue-electron 使用sqlite3数据库,执行npm run build 报错如下: .NET Framework 2.0 SDK,Microsoft Visual Studio 2005[C:\temp\wechat\node_modules\sqlite3\build\binding.sln]Failed to execute 'C:\Program Files (x86)\nodejs\node.exe C:\Program Files (x86)\nodejs\nod

npm执行清理缓存失败npm cache clean

C:\Users\you name>npm cache cleannpm ERR! As of [email protected], the npm cache self-heals from corruption issues and data extracted from the cache is guaranteed to be valid. If you want to make sure everything is consistent, use 'npm cache verify'

npm install 和npm start各种报错无法解决的问题

记一次npm install 和npm start各种报错的问题,个人理解,如若有错请指证 ***npm install下载速度缓慢,会中途终止怎么办? 答:1.安装淘宝镜像,npm  config set registry https://registry.npm.taobao.org --global    npm config set disturl https://npm.taobao.org/dist --global 由于npm是国外服务器,所以安装这个之后会快很多,或者是安装cnp

Laravel5.5执行 npm run dev时报错,提示cross-env找不到(not found)的解决办法

Laravel 5.4 Mix & Laravel5.5执行 npm run dev时报错,提示cross-env找不到(not found)的解决办法 首先进入package.json文件,将scripts下的所有cross-env删除掉,(devDependencies下的不能删除)处理结果代码如下: { "private": true, "scripts": { "dev": "npm run development&qu

mysql:执行LOAD DATA LOCAL 报错

mysql:执行LOAD DATA LOCAL 报错. 我使用navicat for mysql 连接 mysql服务器执行local 可以正常执行 . show VARIABLES like  '%local%infile%'结果如下:+---------------+-------+| Variable_name | Value |+---------------+-------+| local_infile  | ON    | +---------------+-------+1 row

atom执行num run dev报错

# atom运行npm run dev报错问题 运行描述 vue项目,直接在终端中运行 npm run dev 可以成功执行.但是在atom安装的platformio-ide-terminal插件中打开一个终端运行报错 解决方案 在webpack.dev.conf.js中添加如下配置即可 const ExtractTextPlugin = require('extract-text-webpack-plugin') plugins: [ ... // extract css into its o

vue项目npm run dev报错events.js:160 throw er; // Unhandled 'error' event listen EADDRINUSE :::8002

出错情况,如下图: 报错原因: listen EADDRINUSE :::8002 意思是当前8002端口被占用 解决办法: 一:简单粗暴:关掉可能影响的相关程序,重新执行启动. 二: 1.Win+R,cmd查询使用的端口号是否被占用: 输入命令:netstat -aon|findstr "8002" 按回车显示占用8080端口对应的程序的PID号:如下图: 2.根据PID号找到对应的程序: 输入命令:tasklist|findstr "12452" 按回车后显示出

解决npm run eject报错问题

creat-react-app npm run eject报错问题 使用creat-react-app 初始化项目后,运行npm run eject会暴露出隐藏的配置文件, 但是直接使用npm run eject命令的话又会报错... 这样 或是这样 百思不得解呀,扒了好久终于知道咋办了 create-react-app my-app 后 依次执行以下命令 git init git add . git commit -m "Saving before ejecting" 然后再执行 n

npm run dev报错,events.js:160 throw er; // Unhandled 'error' event

错误代码如下: [email protected] dev E:MySoftwaretestGitwebpackvue-projectnode build/dev-server.js "8088" events.js:160 throw er; // Unhandled 'error' event ^ Error: listen EACCES 0.0.0.0:8080 at Object.exports._errnoException (util.js:1026:11) at expo