1

我想试一试最新的 Dart Polymer lib,所以我更新了 pubspec 文件并运行了 pub 安装。但是,安装失败并显示以下消息:

Pub 安装失败,[1] 解决依赖关系.........

封装聚合物需要 SDK 版本 >=0.8.1+1 但当前 SDK 为 0.7.6+4.r28108

是否可以通过 pubspec 使用最新的 Polymer 版本,还是我需要自己从源代码构建 SDK?

4

1 回答 1

1

https://www.dartlang.org/tools/editor/链接到最前沿,持续构建DartEditor

https://storage.googleapis.com/dart-editor-archive-continuous/latest/darteditor-win32-32.zip
https://storage.googleapis.com/dart-editor-archive-continuous/latest/darteditor-win32-64.zip

到今天为止,你应该可以升级 0.8.1.2 如果你去Help > About Dart Editor.

库在 SDK 之前一两天更新似乎很常见,所以通常当我遇到这个问题时,我会在 pubspec 中输入类似以下内容,直到我可以更新 SDK:

dependencies:
  polymer: "< 8.0.0"
于 2013-10-09T21:23:09.547 回答