0
0

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インストール(MacOS)

Last updated at Posted at 2020-05-10

せっかくなので作業ログ的にメモ。ちょっと昨日実施したので詳細がブレるかもしれませんがご愛嬌。
作業日:2020/5/10
環境:MacOS 10.15.4
インストール済み:Xcode,Android studio

参照URL
https://flutter.dev/docs/get-started/install/macos

flutterのインストール

上記のURLより
flutter_macos_1.17.0-stable.zip
ダウンロードしダブルクリックで解凍。
mv flutter /usr/local/
(/usr/local/flutter に配置の場合。どこでもよい。)

パスを通す
echo export PATH="$PATH:/usr/local/flutter/bin" >> ~/.bash_profile
(念の為、すでに存在しないか事前にcat ~/.bash_profileでチェック)

source ~/.bash_profile
(上記で読み込まなくても再ログイン等でも良い)

flutter precache
(予め、必要な処理を実施しておく。やらなくても、実際に利用時に実行されるのであえてやらなくても良い)

IDEへの組み込み

flutter doctor
を実施、記載通り必要な処理を実施。
(すみません。。。色々コマンド打て等言われたんですが、、メモってなくて。。基本言われたとおり実施してれば問題ないかと。。。英語ではありますが。)

0
0
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
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?