NodeJS I am get error运行Yarn添加/安装时发生意外错误

rqdpfwrv  于 2023-03-01  发布在  Node.js
关注(0)|答案(2)|浏览(135)
yarn add v1.22.17
[1/4] Resolving packages...
[2/4] Fetching packages...
error An unexpected error occurred: "C:\\Users\\HP\\AppData\\Local\\Yarn\\Cache\\v6\\npm-ethereumjs-util-5.2.1-a833f0e5fca7e5b361384dc76301a721f537bf65-integrity\\node_modules\\ethereumjs-util\\.yarn-metadata.json: Unexpected end of JSON input".
mjqavswn

mjqavswn1#

yarn cache clean

这将解决问题

mbyulnm0

mbyulnm02#

这可能是发生了一些事情,你的纱包,而你正在安装另一个npm包.它也可能是被删除或损坏不知何故.尝试重新安装它,将解决这个问题:

# assuming you've installed it through the brew
brew reinstall yarn

# OR NPM
npm install -g yarn

快乐编码!

相关问题