2
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.

Ubuntu に Flutter 2 をインストール

Last updated at Posted at 2021-03-04

Ubuntu に Flutter 2 をインストールします。

まずはすでにインストールされている場合は削除を行ってからインストールを行います。

sudo snap remove flutter ;
sudo snap install flutter --classic ;

次に開発環境のチェックプログラムの実行

flutter doctor ;

おそらく Android の SDK が無いと言われるのでリンクをクリックしてダウンロードします。

Download Android Studio and SDK tools  |  Android Developers

ダウンロードをしたファイルを解凍して /usr/local/ にコピー後、インストールプログラムを起動します。

tar xvf android-studio-ide-*-linux.tar.gz ;
sudo cp -r android-studio/ /usr/local/ ;
/usr/local/android-studio/bin/studio.sh ;

Android のライセンスに同意をして、再び開発環境のチェックを行います。

flutter doctor --android-licenses ;
flutter doctor ;
flutter --version ;

もしかしたら vscode のインストールも促されるかもしれません。

サンプルプロジェクトの作成

cd ;
mkdir flutter_sample ;
cd flutter_sample/ ;
flutter create . ;
flutter run  ;

こんな感じで表示されるかと思います。
Screenshot from 2021-03-04 23-08-17.png
私が Flutter を触ったのが初めてなのでよく分かりませんが、おそらく vscode で開発をしていくんだと思います。

参考リンク

2
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
2
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?