计算机:Linux(Ubuntu 17.04)
尝试执行此程序: Beacon transport mechanism
rel=external
错误:
window.location.href
已经尝试过:
$ dart example_interleaved_execution.dart
example/example_interleaved_execution.dart Unhandled exception:
Could not import "package:threading/threading.dart" from "file:///home/xxxxs/devel/dartprog/example_interleaved_execution.dart": Could not resolve a package location for base at file:///home/xxxxs/devel/dartprog/example_interleaved_execution.dart
null:
pub cache repair
并出现同样的错误。 如何解决这个问题?
(注意:如果有人在代理服务器之后工作,请确保" pub"也在root下工作。)
答案 0 :(得分:1)
你可能需要自己生成一个pubspec.yaml
文件,配置如下:
name: my_test_lib
dependencies:
threading: ^0.0.8
然后你可以做一个pub get
来安装所需的依赖项。