Home > Enterprise >  No `Podfile' found in the project directory with existing Podfile
No `Podfile' found in the project directory with existing Podfile

Time:09-21

I'm developing an app in Flutter and macOS Monterey (M1). It's done for Android and I was attempting in IOS. But I have this error when I run flutter. enter image description here

Terminal commands:

enter image description here

Podfile seems like that:

enter image description here

CodePudding user response:

did you try cd ios and pod install

CodePudding user response:

open your .zshrc file and paste this

export LANG=en_US.UTF-8
export LANGUAGE=en_US.UTF-8
export LC_ALL=en_US.UTF-8

after pasting save it and exit your terminal and then restart your editor and then run again

  • Related