🗂

m1 mac venturaでgem経由でcocoapodsをインストールできない問題の解消法

2023/07/05に公開

前提

  • m1 mac Pro Ventura13.4.1

brew install cocoapodsなら通るが、brew経由でインストールするとバージョンを指定出来ない問題がある。案件ではバージョンが指定されているためbrew経由では使えない
ひとまず、アンインストールする。参考は下記
https://qiita.com/moyashidaisuke/items/336c9e8ee32f05e4fbdd

なので、gem経由でinstallする。

% sudo gem install cocoapods -v バージョン番号

Building native extensions. This could take a while...
ERROR:  Error installing ffi:
        ERROR: Failed to build gem native extension.
// 省略

下記参考
https://developer.apple.com/forums/thread/668456

sudo gem install -n /usr/local/bin cocoapods -v バージョン指定

これで通りました。

Discussion