Could not find a file named "pubspec.yaml" in

Issue

I create a simple Web application but when I want to run it I got this message in "Tools Output":

Could not find a file named"pubspec.yaml"in"/home/reza/.pubcache/hosted/pub.dartlang.org/browser-0.10.0+2".

How can I fix this problem?

I use Ubuntu 14.04LTS 64bit and Dart Editor 1.7.2

Solution

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/<username>/.pub-cache

Also, delete the packages directory in your project’s root:

sudo rm -Rf .packages

Then pub get 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).

Answered By – David Notik

Answer Checked By – Marie Seifert (FlutterFixes Admin)

Leave a Reply

Your email address will not be published. Required fields are marked *