M1 平台 pod install 出错
- 方法1:命令前加 arch -x86_64
pod install
或者 pod update
前面加 arch -x86_64
如:
arch -x86_64 pod install
arch -x86_64 pod update
- 方法2: 卸载 cocoapods,用 brew 重新安装 cocoapods
gem list --local | grep cocoapods | awk '{print $1}' | xargs sudo gem uninstall
brew install cocoapods