skip to Main Content

I tried to create a new proyect using yarn create expo-app My-Proyect, and then the terminal showed me the next error:

➤ YN0000: · Yarn 4.0.0-rc.52
➤ YN0000: ┌ Resolution step
➤ YN0085: │ + create-expo-app@npm:2.1.1
➤ YN0000: └ Completed
➤ YN0000: ┌ Fetch step
➤ YN0013: │ A package was added to the project (+ 1.17 MiB).
➤ YN0000: └ Completed
➤ YN0000: ┌ Link step
➤ YN0012: │ create-expo-app@npm:2.1.1 isn't supported by any available linker
➤ YN0000: └ Completed
➤ YN0000: · Failed with errors in 0s 50ms

I tried unistalling the node and yarn dependeces and nothing happened, even if i change the folder direction it keeps throwing the same error.

2

Answers


  1. Try using npm instead of yarn.

    npx create-expo-app my-app
    
    Login or Signup to reply.
  2. Try npx create-expo-app My-Proyect

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search