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

Flutterの環境構築で沼ったこと備忘録 for Mac M3

Last updated at Posted at 2024-09-24

環境

PC本体: M3 Mac book

全てを始める前に

macならHomebrew入ってますか??
便利すぎるので先にそっち入れましょう!!!

インストール方法

↓mac用

自分はこの記事に従ってやりました!いい感じ!

.zshrcに書くディレクトリ

**export PATH="$PATH:/Users/[自分のユーザ名]/development/flutter/bin"**

Android SDK Command Line Toolsの設定

Android Studioを開いて、左上にある「Android Studio」というボタンから、

Android Studio → Setting → Langages&Frameworks → AndroidSDK → SDK tools

を開き、Android SDK Command-line Tools (lastest) にチェックを入れ、右下の「OK」ボタンを押してインストール

Xcodeインストール

スクリーンショット 2024-09-09 22.58.32.png

初めて開いた時にこんな画面が出てきたら「iOS」の欄にもチェック入れといた方が後々楽です

flutter doctor コマンドを実行してエラーが出たら

Xcode installation is incomplete; a full installation is necessary for iOS development.

初回起動時に「iOS」の欄にチェック入れ忘れたなら。。。

↑この記事の感じでインストール

それでもまだ出るなら。。。

sudo xcode-select --switch /Applications/Xcode.app/Contents/Developer
sudo xcodebuild -runFirstLaunch

この二つのコマンドを実行してみる。私はそれで解決した

CocoaPods not installed.

下記コマンドを実行する

brew install cocoapods

ものすごい長い難しそうな文字が流れますが無視でOK

もう一度 flutter doctor をターミナルで実行してみてください!

これで赤い項目がなければ完了!!!

お疲れ様でした!!

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