我正在学习Dart,但我发现了一个问题:
我想从其GitHub存储库添加widget.dart包作为我项目的依赖项。但是在pub.dartlang.org中有一个非常旧的版本,它需要过时的Web UI。有谁知道,如何从GitHub存储库获取pub(并将其安装为pub.dartlang.org中的那个)?
我在Windows和Dart编辑器上使用GitHub。
更新:我尝试将其添加到依赖项中并以经典方式运行“pub get”:
dependencies:
widget:
git: git@github.com:dart-lang/widget.dart.git
但它会返回此错误:
--- 30.1.2014 15:35:27 Running pub get ... ---
Pub get failed, [1] Resolving dependencies...
Cannot get widget from Git (git@github.com:dart-lang/widget.dart.git).
Please ensure Git is correctly installed.
e:\b\build\slave\dart-editor-win-stable\build\dart\sdk\lib\_internal\pub\lib\src\source\git.dart 42 GitSource.downloadToSystemCache.<fn>
dart:isolate _RawReceivePortImpl._handleMessage
This is an unexpected error. Please run
pub --trace 'get'
and include the results in a bug report on http://dartbug.com/new.
** Warning: Application may fail to run since packages did not get installed.Try running pub get again. **
答案 0 :(得分:8)
在pubspec.yaml
中添加依赖项
dependencies:
widget:
git: git@github.com:dart-lang/widget.dart.git
如果您在DartEditor中打开pubspec.yaml
文件,则会得到一位好助手
Add...
Source
从hosted
更改为git
Git ref:
设为git@github.com:dart-lang/widget.dart.git
pubspec.yaml
name: widget
中查找依赖项名称
SSH clone URL
下的GitHub存储库复制git路径(在“下载ZIP”按钮上方) 修改强>
要完成这项工作,您需要在本地系统上安装git命令行客户端。
您可以手动下载存储库
git clone git@github.com:dart-lang/widget.dart.git
并添加以下依赖项
dependencies:
widget:
git: ../widget.dart
# path: ../widget.dart # would work too
或者,您可以从GitHub下载存储库(以ZIP格式下载)将其解压缩到本地驱动器并使用path:
依赖关系,如
dependencies:
widget:
path: ../widget.dart
如果您将ZIP解压缩到包的兄弟文件夹中。
另见https://www.dartlang.org/tools/pub/dependencies#git-packages