unable to create new flutter project on android studio getting error => Could not find a file named “pubspec.yaml” at project location drive

帅比萌擦擦* 提交于 2021-02-11 12:26:39

问题


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]


回答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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!