이 노트에 대하여

Dart와 Flutter를 Emacs 기반 크로스플랫폼 통합개발환경 안에서 어떻게 다룰지 정리한다. 모바일과 데스크톱 개발을 텍스트 도구로 묶어 보려는 노트다.

히스토리

  • [2025-07-02 Wed 13:51] 다트 플러트

관련메타

BIBLIOGRAPHY

이맥스 다트 플러터

†#둠이맥스 #스페이스맥스

설치

Make sure that the Dart SDK is on your $PATH, and if using Flutter, make sure the Flutter binary is on your $PATH as well.

Installing Dart SDK

Before starting note that Flutter SDK will have a version of Dart. Therefore, there is no need to install Dart. If you want to use Flutter just see the next part.

The stable version of the SDK is in most major distributions repositories. If you find it necessary to install any other version or build from source, please refer to the official website at: https://dart.dev/get-dart

Installing Flutter SDK

Due to complications with permissions, it is suggested not to use AUR or any automatic installation tools for Flutter SDK.

On any system just run the following commands to install Flutter, once you have met dependencies named on the site:

git clone https://github.com/flutter/flutter --branch stable # to download Flutter
export PATH="$PATH:$(pwd)/flutter/bin" # to add it to PATH
flutter doctor # for Dependency check and further instructions