1

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?

Alexandre Ardhuin
  • 71,959
  • 15
  • 151
  • 132
  • Did you run Tools -> Pub Install on the project? Maybe the args package hasn't been installed locally yet. – simonpai Dec 13 '12 at 02:23
  • I have had some success with the ScrollViewDemo working with the Dat Editor (beta) 1.3. See: [Wanted: Rikulo UXL example(s)](http://stackoverflow.com/questions/22608569/wanted-rikulo-uxl-examples) – will Mar 28 '14 at 10:50

1 Answers1

0

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.

Danny Tuppeny
  • 40,147
  • 24
  • 151
  • 275