1、安装HomeBrew官网传送门
安装命令
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
如果网络不好,试试下面的镜像
/bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)"
还是不行再试试这个极速版
/bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)" speed
安装完成后可以安装下Bob测试下
brew install --cask bob
卸载命令
/bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/HomebrewUninstall.sh)"
2、下载Xcode,商店登陆下载就好了
3、更新Ruby版本,系统安装的Ruby比较老。
Ruby官网,截止目前,最新的Release版本为3.1.0
查看Ruby版本
$ ruby --version
ruby 2.6.8p205 (2021-07-07 revision 67951) [universal.x86_64-darwin21]
安装RVM
\curl -sSL https://get.rvm.io | bash -s stable
如果提示错误
Failed to connect to raw.githubusercontent.com port 443: Connection refused
在https://www.ipaddress.com/查询raw.githubusercontent.com的真实IP。
修改hosts
sudo vim/etc/hosts
添加如下内容:
199.232.28.133raw.githubusercontent.com
安装成功后,安装Ruby
#列表最新的Ruby版本
% rvm list known
...
[ruby-]2.6[.6]
[ruby-]2.7[.2]
[ruby-]3[.0.0]
ruby-head
## 安装2.7.0的ruby
rvm install 2.7.0
## 查看已安装的版本
rvm list
4、更换gem source源
% gem source -l
*** CURRENT SOURCES ***
https://rubygems.org/
##移除
% gem sources --remove https://rubygems.org/
https://rubygems.org/ removed from sources
## 添加
% gem sources --add https://gems.ruby-china.com
https://gems.ruby-china.com added to sources
5、安装cocopod
sudo gem install -n /usr/local/bin cocoapods
安装完成后直接
git clone https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git ~/.cocoapods/repos/trunk
##检查安装结果
pod search sdwebimage
网友评论