플러터 설치후 flutter doctor 을 입력하면 제대로 설정이 된건지 알 수 있다.
나는 저 체크리스트중 2가지의 오류가 있었다.
문제1: Android toolchain - develop for Android devices (Android SDK version 34.0.0)
해결방법
cmd에 아래의 명령어를 입력해주었다.
flutter doctor --android-licenses
입력하고나서 뭔가 Yes를 누르라는 게 여러번 떴고
yes yes yes 하고 다시 flutter doctor로 확인하니 체크리스트가 사라졌다.
문제2: Visual Studio - develop Windows apps
Visual Studio is missing necessary components. Please re-run the Visual Studio installer for the "Desktop%0D%0A development with C++" workload, and include these components:%0D%0A MSVC v142 - VS 2019 C++ x64/x86 build tools%0D%0A - If there are multiple build tool versions available, install the latest%0D%0A C++ CMake tools for Windows%0D%0A Windows 10 SDK
Visual Studio 홈페이지에서 Visual Studio를 설치해준다.
이 이후에 그냥 꺼버려서 문제가 생겼다.
해결방법
Visual Studio Installer를 실행하고
수정을 누른후 아래로 스크롤을 내려서
C++을 사용한 데스크톱 개발, 모바일 개발을 체크해서 설치해준다.
설치후에 다시 flutter doctor 을 확인해보면
다들 잘 설치되어있다고 뜬다.
참고 (window 환경은 아래의 영상을 참고해서 따라하는걸 추천한다)
- https://www.youtube.com/watch?si=M23WJZE1Ecc7gXvi&v=CedR_QZnUBM&feature=youtu.be
반응형