问题
I installed flutter by following flutter documentation. This is the error I'm getting=> Could not find a file named "pubspec.yaml" in "E:". pub get failed (66; Could not find a file named "pubspec.yaml" in "E:". when I checked my project directory(E:\Fapplication) there was an empty folder with the project name(flutter_appp) but the android studio also created the same folder(flutter_appp) directly in the project location's drive(E:) with all contents of the project. flutter doctor -v checked and environment variable is also set and I also tried to create the project on command prompt but it resulted in a similar error. I must be doing a little mistake which I can't find, please help. [
回答1:
My guess is that you have a corrupted install of Flutter. I would suggest you go to this Github link and follow the commands shown by Flutter, but make sure that you run it in your Flutter install directory since it already caused some problems for someone in Github who didn't run it in the correct directory. This is one of my first contributions, so let me know if it fixes your issue. Thanks
回答2:
This has happened to me several times:
What's ultimately solved things for me (OS X) is deleting pub's cache:
sudo rm -Rf /Users//.pub-cache
Also, delete the packages directory in your project's root:
sudo rm -Rf packages
Then pub gets again in your project(s), but make sure that you are not operating as root (a whoami will tell you, and an exit will get you out of there).
来源:https://stackoverflow.com/questions/63206603/unable-to-create-new-flutter-project-on-android-studio-getting-error-could-no