guccisekspir
guccisekspir

Reputation: 1377

Dart null safety command

When I try to migrate my project to null safety with dart migrate command I get this error Error: Error when reading 'migrate': No such file or directory

Also I try dart pub outdated --mode=null-safety and I get this error

Error: Error when reading 'pub': No such file or directory

What is this ?

Upvotes: 0

Views: 250

Answers (1)

Sofia
Sofia

Reputation: 11

I had this issue and just figured it out. It turns out that I already had Dart installed but then Flutter also includes Dart in its SDK. I had to update my path so that the Flutter version of Dart was listed first: https://flutter.dev/docs/get-started/install/macos#update-your-path

Upvotes: 1

Related Questions