1
resposta

flutter doctor

C:\Users\ricar>flutter doctor
Doctor summary (to see all details, run flutter doctor -v):
[☠] Flutter (the doctor check crashed)
    X Due to an error, the doctor check did not complete. If the error message below is not helpful, please let us know
      about this issue at https://github.com/flutter/flutter/issues.
    X Exception: Cannot find the executable for `where`. This can happen if the System32 folder (e.g.
      C:\Windows\System32 ) is removed from the PATH environment variable. Ensure that this is present and then try
      again after restarting the terminal and/or IDE.
[√] Windows Version (Installed version of Windows is version 10 or higher)
[√] Android toolchain - develop for Android devices (Android SDK version 34.0.0)
[√] Chrome - develop for the web
[!] Visual Studio - develop for Windows (Visual Studio Community 2022 17.6.4)
    ! Unable to locate a Windows 10 SDK. If building fails, install the Windows 10 SDK in Visual Studio.
[√] Android Studio (version 2022.2)
[√] VS Code (version 1.79.2)
[√] Connected device (2 available)
[√] Network resources

! Doctor found issues in 2 categories.
1 resposta

Olá Ricardo,

Pelo que entendi, ao executar o comando "flutter doctor" você recebeu uma mensagem de erro informando que não foi possível encontrar o executável "where". Esse erro pode ocorrer se a pasta System32 (por exemplo, C:\Windows\System32) for removida da variável de ambiente PATH.

Para resolver esse problema, você pode adicionar a pasta System32 à variável de ambiente PATH. Para fazer isso, siga os seguintes passos:

  1. Abra o menu Iniciar e pesquise por "Variáveis de ambiente".
  2. Clique em "Editar as variáveis de ambiente do sistema".
  3. Na aba "Avançado", clique em "Variáveis de ambiente".
  4. Na seção "Variáveis do sistema", encontre a variável "Path" e clique em "Editar".
  5. Clique em "Novo" e adicione o caminho da pasta System32 (por exemplo, C:\Windows\System32).
  6. Clique em "OK" em todas as janelas abertas.

Depois de adicionar a pasta System32 à variável de ambiente PATH, reinicie o terminal e tente executar o comando "flutter doctor" novamente.

Espero ter ajudado e bons estudos!