cocoapods安装

1.查看homebrew版本

brew -v

2.安装homebrew(国内版)

/bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)"

3.查看rvm版本

rvm -v

4.安装rvm【先安装homebrew】

curl -L get.rvm.io | bash -s stable

5.查看ruby版本

ruby -v

6.升级/安装ruby(2.7.2版本号)【先安装rvm】

rvm install 2.7.2 

7.设置ruby默认版本

rvm use 2.7.2 --default

8.查看镜像源

gem sources -l

9.更新RubyGems

gem update --system

10.更换镜像源

gem sources --add https://gems.ruby-china.com/ --remove https://rubygems.org/

11.查看cocos pods版本

pod --version

12.安装cocoa pods

sudo gem install -n /usr/local/bin cocoapods

13.单个Xcode请忽略【多个Xcode选择版本】

sudo xcode-select -switch /Applications/Xcode.app/Contents/Developer

14.安装本地库

pod setup

15.如果没有漫长等待(Setup completed: 安装失败),试试下面几个(一个一个试)

git clone https://github.com/CocoaPods/Specs.git ~/.cocoapods/repos/trunkgit clone https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git ~/.cocoapods/repos/trunk

15.验证是否安装成功/搜索AFNetworking

pod search AFNetworking

完成。

你可能感兴趣的:(cocoapods安装)