Error: EIO: i/o error, read如何解决

简介: Error: EIO: i/o error, read如何解决

报错:

第一步删除:node_modules

第二步: npm install

重新输入之后系统表示要输入 npm audit fix

 对于我们npm audit fix的解决方法有两种,一种是按照流程下来,但是小编试过了,没有成功

1、npm audit fix

2、npm audit fix --force

3、npm audit

输入第一行指令后报错了

reason: connect ETIMEDOUT 104.16.25.35:443

小编查了一下,好像问题在于需要使用cnpm

执行npm install -g cnpm --registry=https://registry.npm.taobao.org

再执行cnmp install

但是尝试了之后仍旧报错

小编抱着不撞南头誓不回头的想法再输入了一次npm audit fix,结果又报错,心都要崩了

他提示我using --force Recommended protections disabled,表示该版本太高了,于是我给他降了个版本

npm install npm@6.14.10 -g  又重新回到npm audit fix,界面了

在多次失败下,它提示我a complete of this run can be found in要清理缓存

对于a complete of this run can be found in采取的方法是:

npm cache clean --force

清理缓存,如果出现多次失败,清理之前还要先删掉nodule_moudle

之后重新用cnpm install 下了一下,它又提示

Error: Cannot find module 'bug-versions/package.json'

这个表示我们的npm 需要下载依赖

cnpm install --save-dev

然后提示我们npm audit fix,于是继续尝试了一下,成功了,但是还要下载npm audit fix --force

输入之后输入npm run serve

相关文章
|
Java 数据库连接 数据库
ERROR 11848
ERROR 11848
166 1
|
6月前
|
JavaScript 前端开发
报错:Cannot read properties of undefined (reading ‘$message‘)解决方法
以上就是解决"Cannot read properties of undefined (reading ‘$message‘)"错误的几种方法,希望对你有所帮助。
3297 0
|
JavaScript 前端开发 开发者
Error,Error,到底什么是Error
总所周知,当系统运行出现错误的时候,就会抛出一个 Error ,那么这个 Error 是什么?它是怎么来的?它又是怎么被抛出的?它又是怎么被捕获的?这些问题,我们一起来探讨一下。
244 0
|
关系型数据库 MySQL C++
Error:fatal error C1010: unexpected end of file while looking for precompiled head
Error:fatal error C1010: unexpected end of file while looking for precompiled head
128 0
|
关系型数据库 MySQL
把log_error_verbosity设置为3,调试连接问题ERROR 2003 (HY000):ERROR 1045 (28000):
mysql 8里面使用global log_error_verbosity控制日志记录的详细程度
C中error的使用
C中error的使用
99 0
|
Java 应用服务中间件 Windows
|
应用服务中间件 nginx
常见error
小榕
859 0
|
关系型数据库 MySQL Linux
|
SQL 测试技术
The process could not read file xxx due to OS error 53
在不同地域的两个SQL Server服务器上配置了复制(Replication)用于同步数据(生产环境配置有Replication,测试环境也配有Replication),两地通过专线连接起来,这些复制(Replication)已经稳定运行了一两年了, 但是前阵子,测试环境的SQL Se...
1097 0