Reputation: 1407
I created a new Angular Dart project from IntelliJ but when I try to run the project I get the following output:
/usr/local/opt/dart/libexec/bin/pub global run webdev serve web:61889
No active package webdev.
Dart Dev Server terminated
Is there something I still need to install?
Upvotes: 3
Views: 832
Reputation: 658017
You first need to run
pub global activate webdev
as mentioned in https://pub.dartlang.org/packages/webdev
Upvotes: 2