본문 바로가기
TIL

[TIL] pubspec.yaml: A dependency may only have one source. 오류

by chengzior 2024. 12. 20.

 

YoloHelper가 안 불러와지는 오류 발생
패키지도 다 설치했는데 뭐가 문제지? 하고 찾기 위해
혹시 빼먹은 패키지가 있는지 다시 하나하나 설치해보기로.

flutter pub add tflite_flutter

이 명령어를 입력하니 아래와 같은 오류 발생

[flutter_tflite_example] flutter pub get --no-example
Resolving dependencies...
Error on line 43, column 5 of pubspec.yaml: A dependency may only have one source.
   ╷
43 │ ┌     url: https://github.com/fhelper/flutter-yolo-helper.git
44 │ │     ref: main
45 │ └ 
   ╵
exit code 65

알고 보니 pubspec.yaml 파일에서 띄어쓰기를 잘못했던 것....

  yolo_helper:
    git:
      url: https://github.com/fhelper/flutter-yolo-helper.git
      ref: main

이렇게 고쳐주니 문제 없이 불러와짐.
이런 초보적인 실수를 하다니 아직은 초보가 맞나보다..

'TIL' 카테고리의 다른 글

[TIL] .env 인식하지 못하는 오류  (1) 2024.12.23
[TIL] Stateful Widget의 LifeCycle  (0) 2024.12.20
[TIL] GoRouter  (0) 2024.12.19
[트러블 슈팅] GPS기반 채팅앱 - 4일차  (1) 2024.12.17
[트러블슈팅] 위치기반 채팅앱 - 3일차  (1) 2024.12.16