環境
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インストール
初めて開いた時にこんな画面が出てきたら「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
をターミナルで実行してみてください!
これで赤い項目がなければ完了!!!
お疲れ様でした!!