2

Our team decides to use yarn berry on our project, and one in my team initialize project. So I cloned the project on my local and run "yarn start" in terminal But it is not work. This is the Error message.

Usage Error: Couldn't find the node_modules state file - running an install might help (findPackageLocation)

I tried "yarn install" and it worked but node_modules and other things are generated.

Chang-Man
  • 23
  • 1
  • 4

1 Answers1

-1

You likely have to first do the command:

yarn install

Then

yarn start
Carlos Ferreira
  • 1,980
  • 2
  • 14
  • 18