Why I get this error: Couldn't find the node_modules state file - running an install might help (findPackageLocation)?

Why I get this error: Couldn't find the node_modules state file - running an install might help (findPackageLocation)?

我尝试了很多,但我的项目没有 运行 纱线,虽然已经工作了(用 create-react-app 制作)。

我试过:yarn install - npm install --global yarn - npm update --global yarn - yarn version apply

当我运行yarn start然后:

Edit1: 当我创建一个新项目时(create-react-app),没有发生任何错误。它仅针对 以前的项目.

给出错误

我已经为这些目录做了 yarn install,并且 yarn start 工作了。 所以 运行 yarn install 没有解决这个问题。虽然当我再次 运行 run install 时,它给出了这个错误:

Edit2: 当我删除 node_modules.yarnyarn.lock 时,然后 运行 yarn install 和然后yarn start,它给出了另一个错误:

你应该运行

yarn install

在 运行 任何 npm 脚本(纱线启动)之前。它在您使用 create-react-app 时有效,因为它会自行安装依赖项。

关于数字信封错误,您收到此错误是因为 NodeJS 版本(最有可能)。如果你使用最新的 LTS 降级到之前的 LTS 版本。您可以在这里阅读更多内容:yWhosebug。com/questions/69692842/... 让我知道进展如何 –