简体   繁体   中英

How do I compile a uxl-file from Dart-Editor?

I installed the dependencies from this tutorial http://docs.rikulo.org/rikulo/latest/UXL/Fundamentals/UXL_Overview.html

dependencies:
  rikulo_uxl:
    git: git://github.com/rikulo/uxl.git

trying to compile with uc.dart I get:

Error: line 8 pos 1: library handler failed
import 'package:args/args.dart';

what is wrong? missing path?

This normally happens when you reference a package that isn't found on disk. You should ensure you have the package listed in your pubspec.yaml and that you've run pub get . You can also check that inside your packages folder you can see a folder named args .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM