반응형
https://docs.flutter.dev/get-started/install/windows
반응형
<윈도우 설치>
시스템 요구 사항
Flutter를 설치하고 실행하려면 개발 환경이 다음과 같은 최소 요구 사항을 충족해야 합니다.
- 운영 체제 : Windows 10 이상(64비트), x86-64 기반.
- 디스크 공간 : 1.64GB(IDE/도구용 디스크 공간 제외).
- 도구 : Flutter는 환경에서 사용할 수 있는 이러한 도구에 따라 다릅니다.
- Windows PowerShell 5.0 이상(Windows 10에 사전 설치됨)
- Windows 명령 프롬프트에서 Git 사용 옵션이 있는 Windows 2.x 용 Git .
- gitWindows용 Git이 이미 설치되어 있는 경우 명령 프롬프트 또는 PowerShell에서 명령을 실행할 수 있는지 확인합니다 .
1. Flutter SDK 받기
아래 내용을 주의하도록 합시다.
c드라이브 아래에나 또는 아무곳에나 설치하면 됩니다.
안드로이드 스튜디오를 설치해 줍니다.
https://developer.android.com/studio
동의 누르고 설치 진행합니다.
next 버튼 계속 누르면 실행됩니다.
저는 이미 설치가 되어 있어서
내부 에서 plugins로 Flutter 설치해줬습니다.
file - > setting - > plugins
tools -> SDKmanager -> System Setting -> Andrioid SDK -> SDK Tools
윈도우에 시스템환경변수라고 검색해봅니다.
새로만들기를 해서 flutter 설치 경로 bin 파일 까지의 경로를 복사 붙여 넣기 해주면 됩니다.
마무리했으니
cmd 창을 켜 줍니다
flutter doctor
Got dependencies in Desktop\joon_code\flutter\flutter\packages\flutter_tools!
Doctor summary (to see all details, run flutter doctor -v):
[√] Flutter (Channel stable, 3.7.5, on Microsoft Windows [Version 10.0.22621.1265], locale ko-KR)
[X] Windows Version (Unable to confirm if installed Windows version is 10 or greater)
[!] Android toolchain - develop for Android devices (Android SDK version 32.0.0)
X Android license status unknown.
Run `flutter doctor --android-licenses` to accept the SDK licenses.
See https://flutter.dev/docs/get-started/install/windows#android-setup for more details.
[√] Chrome - develop for the web
[!] Visual Studio - develop for Windows (Visual Studio Community 2019 16.11.2)
X Visual Studio is missing necessary components. Please re-run the Visual Studio installer for the "Desktop
development with C++" workload, and include these components:
MSVC v142 - VS 2019 C++ x64/x86 build tools
- If there are multiple build tool versions available, install the latest
C++ CMake tools for Windows
Windows 10 SDK
[!] Android Studio (version 2022.1)
X Unable to find bundled Java version.
[√] VS Code (version 1.75.1)
[√] Connected device (3 available)
[√] HTTP Host Availability
! Doctor found issues in 4 categories.
또 이런저런 부족한게 있다고 나오네요
https://ssscool.tistory.com/643
[X] Windows Version (Unable to confirm if installed Windows version is 10 or greater)
이경우
flutter channel master
체널을 변경하고
flutter upgrade
해주니 해결 되었습니다.
[!] Visual Studio - develop for Windows (Visual Studio Community 2019 16.11.2)
X Visual Studio is missing necessary components. Please re-run the Visual Studio installer for the "Desktop
development with C++" workload, and include these components:
MSVC v142 - VS 2019 C++ x64/x86 build tools
- If there are multiple build tool versions available, install the latest
C++ CMake tools for Windows
Windows 10 SDK
개별 구성 요소 별 잡아먹는 용량이 어마무시합니다 ㅋㅋㅋㅋ
flutter doctor
Doctor summary (to see all details, run flutter doctor -v):
[√] Flutter (Channel master, 3.8.0-17.0.pre.32, on Microsoft Windows [Version 10.0.22621.1265], locale ko-KR)
[√] Windows Version (Installed version of Windows is version 10 or higher)
[!] Android toolchain - develop for Android devices (Android SDK version 32.0.0)
X Android license status unknown.
Run `flutter doctor --android-licenses` to accept the SDK licenses.
See https://flutter.dev/docs/get-started/install/windows#android-setup for more details.
[√] Chrome - develop for the web
[√] Visual Studio - develop for Windows (Visual Studio Community 2022 17.5.0)
[√] Android Studio (version 2022.1)
[☠] Android Studio (the doctor check crashed)
X Due to an error, the doctor check did not complete. If the error message below is not helpful, please let us know
about this issue at https://github.com/flutter/flutter/issues.
X FileSystemException: Exists failed, path = '=C:\Program Files\Android\Android Studio.plugins' (OS Error: 파일 이름,
디렉터리 이름 또는 볼륨 레이블 구문이 잘못되었습니다.
, errno = 123)
[√] VS Code (version 1.75.1)
[√] Connected device (3 available)
[√] Network resources
! Doctor found issues in 2 categories.
C:\Users\leejoonho>
ㅋㅋㅋ 여전한 android 에러 요 에러 잡는건 다시 포스팅하겠습니다.
flutter doctor --android-licenses
요 명령어 입력하면 대부분 다들 잘 되실껍니다.
반응형
'App Dev' 카테고리의 다른 글
EXPO 실행 에러 [GraphQL] Entity not authorized 해결방법 여기로 (0) | 2024.01.17 |
---|