在 symfony 项目中使用 yarn 安装 Bootstrap 时出错

Error when installing Bootstrap with yarn in symfony Project

我正在尝试使用 yarn 命令在我的 symfony 项目 (4) 中安装 bootstrap。 "error Incorrect integrity when fetching from the cache"

我遵循 symfony 的指南文档。 https://symfony.com/doc/current/frontend/encore/bootstrap.html

我已经尝试清除缓存,从 package.json 中删除 yarn 依赖项,重新安装 yarn,删除 package.json 然后重新安装。我还尝试使用以下命令为我的 package.json 授予许可:"yarn licenses list"

{
  "devDependencies": {
    "@symfony/webpack-encore": "^0.28.0",
    "webpack-notifier": "1.6.0"
  },
  "dependencies": {
    "jquery": "^3.4.1",
    "popper": "^1.0.1"
  },
  "version": "0.0.0"
}

当我尝试使用:"yarn add bootstrap@4 --dev" 时,出现此错误:"error Incorrect integrity when fetching from the cache"

我执行的每个 yarn 命令的警告消息:没有许可证字段。

yarn cache clean

我要冒险并假设通过 清除缓存 你删除了 node_modules,这不是缓存(我犯了同样的错误).

查看此处的答案了解更多详情: