1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

任意のバージョンのCocoaPodsをアンインストール/インストールする

Last updated at Posted at 2019-12-06

開発チーム内でCocoaPodsのバージョンを合わせる時用のメモ

指定バージョンのアンインストール

ターミナルで以下のコマンドを実行
sudo gem uninstall cocoapods

以下のようにインストールされているバージョン一覧が表示されるので、
アンインストールしたいバージョンを選択する

Select gem to uninstall:

  1. cocoapods-1.5.3
  2. cocoapods-1.7.5
  3. All versions

指定バージョンのインストール

ターミナルで以下のコマンドを実行する。
例) 1.6.1をインストールする場合
sudo gem install -v 1.6.1 cocoapods

現在のバージョンを確認する

ターミナルで以下のコマンドを実行する。
pod --version

今入っている最新バージョンが表示される

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?