본문 바로가기
Development Solutions/Flutter & Dart

Flutter Unknown upstream repository issue (solved)

by studio ODOC 2023. 7. 26.
반응형

 

문제 상황 (Problem)

$ flutter doctor

를 실행했을 때

아래와 같은 워닝 문구가 나온다.

 

[!] Flutter (Channel unknown, 3.7.0, on macOS 13.4.1 22F82 darwin-arm64, locale ko-KR)
    ! Flutter version 3.7.0 on channel unknown at /Users/sjh/development/flutter
      Currently on an unknown channel. Run `flutter channel` to switch to an official
      channel.
      If that doesn't fix the issue, reinstall Flutter by following instructions at
      https://flutter.dev/docs/get-started/install.
    ! Unknown upstream repository.
      Reinstall Flutter by following instructions at
      https://flutter.dev/docs/get-started/install.

 

 

해결 방법 (Solution)

아래 명령을 실행하자.

$ flutter channel master

위와 같이 나온다면 성공한 것이다.

flutter doctor 결과 (워닝 해결)

반응형