Same here
Post
Replies
Boosts
Views
Activity
set -x
export HOMEBREW_NO_INSTALL_CLEANUP=TRUE
brew install cocoapods
Install Node Version Manager (nvm) and Node.js
brew install nvm
export NVM_DIR="$HOME/.nvm"
source $(brew --prefix nvm)/nvm.sh
NODE_VER="20.16.0"
nvm install $NODE_VER
nvm use $NODE_VER
Verify Node.js installation
node -v
npm -v
Install Yarn
brew install yarn
Install dependencies
yarn --frozen-lockfile
Change to the ios directory and run pod install
cd ios
pod install