如何从GitHub获取pub作为依赖

时间:2014-01-30 14:03:46

标签: git github dart dart-pub

我正在学习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. **

1 个答案:

答案 0 :(得分:8)

pubspec.yaml中添加依赖项

在文本模式下编辑pubspec.yaml

dependencies:
  widget:
    git: git@github.com:dart-lang/widget.dart.git

使用助手

如果您在DartEditor中打开pubspec.yaml文件,则会得到一位好助手

  1. 点击Add...
  2. 输入包名称:'widget'
  3. 将查询Sourcehosted更改为git
  4. Git ref:设为git@github.com:dart-lang/widget.dart.git
  5. 其他信息:

    • 您可以在pubspec.yaml
    • 下的小部件的GitHub存储库中的文件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