0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Flutter環境構築手順

Last updated at Posted at 2020-01-10

 環境構築メモ

1.SDKのダウンロード
Webサイトから自分の環境にあった最新のものをダウンロードする
2.ダウンロードしたファイルを解凍する
パスはどこでもいいのですが、公式に合わせる

mkdir development
cd development
unzip ~/Download/ダウンロードしたファイル名

3.Flutterのディレクトリをパスに追加する

vi ~/.zshrc

export PATH="$PATH:[あなたのFlutterを解凍したディレクトリ]/flutter/bin

あとは[esc] :wq で保存してください。

source ~/.zshrc

4.FlutterDoctorを実行する

flutter doctor

AndroidStudioとかXcodeがインストールされてないなど、Flutterに必要なツール類のチェックをして解決方法を教えてくれるすごいやつです。

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?