質問編集履歴
1
回答いただいた対処法を実施した後の新しいエラーを追記しました。
title
CHANGED
File without changes
|
body
CHANGED
@@ -21,4 +21,17 @@
|
|
21
21
|
pub get failed (1; Could not find a file named "pubspec.yaml" in https://github.com/google/charts.git 8dd8fa5320b20017329d207de1993fb6472f707f.)
|
22
22
|
Process finished with exit code 1
|
23
23
|
|
24
|
-
正しい記述方法を教えてください。
|
24
|
+
正しい記述方法を教えてください。
|
25
|
+
|
26
|
+
追記
|
27
|
+
path: charts_flutterという一行を追記したところ、異なるエラーが発生しました。
|
28
|
+
> Error on line 18, column 11: Invalid description in the "charts_flutter" pubspec on the "charts_common" dependency: "../charts_common/" is a relative path, but this isn't a local pubspec.
|
29
|
+
╷
|
30
|
+
18 │ path: ../charts_common/
|
31
|
+
│ ^^^^^^^^^^^^^^^^^
|
32
|
+
╵
|
33
|
+
pub get failed (65; ╵)
|
34
|
+
Process finished with exit code 65
|
35
|
+
|
36
|
+
gitに公開されているcharst_flutterのpubspec.yamlをブラウザで見に行ったところ、18行目に「path: ../charts_common/」の記述がありました。
|
37
|
+
これは、依存関係にあるパッケージを取得する記述がローカルのように書かれているので取得できないという風に読めたのですが、つまりgitからは取得できないということなんでしょうか??
|