Home > Back-end >  Flutter doesnt seem to be working on my new PC
Flutter doesnt seem to be working on my new PC

Time:03-30

I got a new system and I've been trying to set up my AS to run flutter but it's not working. After installing git, downloading the flutter zip file and setting up the user variable path, flutter doctor still doesn't run and just stops at Running "flutter pub get" in flutter_tools...

Tried deleting the cache folder, still didn't work

CodePudding user response:

Try to

  1. delete folder in your flutter SDK path flutter/bin/cache (detail info here)
  2. run flutter doctor -v again will trigger downloading Dart SDK
  • Related