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?

Ubuntu Desktop 22.04.3 LTS で Flutter on Desktop

Last updated at Posted at 2024-02-13

Ubuntu Desktop 22.04.3 LTSでFlutter on Desktopを使ってデスクトップアプリを作っていきたいと思います。

本記事はUbuntu Desktop 22.04.3 LTS(以下Ubuntu22)において、すでにVisual Studio Codeやsudoの設定が済んでいる方が対象となります。私はDebianを利用していますが、記事の説明のために今回はUbuntuを用意しました。

Flutterのインストール

公式のコマンドにてFlutterのインストール

bash
sudo snap install flutter --classic

u01.PNG
マニュアルインストールの説明もありますが、snap経由でインストールをするとPathの設定などを自動で行ってくれるので今回は公式のコマンドに従って作業を行いました。

flutter doctorを実行

bash
$ flutter doctor

u02.PNG
VS Codeの項目を見ると謎のエラーで怒られています。

Unable to determine VS Code versionエラーに対応

bash
flutter channel master && flutter upgrade

u04.PNG
上記のスレッドを参考にchannelをmasterに切り替えます。

flutter doctorを再実行

bash
$ flutter doctor

u05.PNG
今回はDesktop BuildをやりたいのでAndroid Buildに必要なAndroid Studioの設定は行いません。

Desktop Buildの確認

u07.PNG

とくにエラーも出ずにあっさりとデスクトップアプリとして起動できました。Windows11未対応PCを来るべき日に備えてDebian/Ubuntuに完全移行できるように、またLinuxに無いものは自分で作れるように環境を移行していこうと思います。

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?