第一步安装 homebrew,已安装的跳过当前这步
/bin/zsh -c "$(curl -fsSl https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)"
第二步安装 rvm
我们要通过rvm来安装Ruby
1、首先找到正确的ip 更该hosts 文件
文件地址 /etc/hosts
打开hosts文件,在文件尾部添加以下ip地址:
185.199.108.133 raw.githubusercontent.com
199.232.68.133 raw.githubusercontent.com
199.232.68.133 user-images.githubusercontent.com
199.232.68.133 avatars2.githubusercontent.com
199.232.68.133 avatars1.githubusercontent.com
注意:这里可能会提示无权限进行更改,解决方法:
打开Finder,然后点击左上角的前往,之后在下边的输入框中输入/private点击前往。找到etc文件夹,然后右键,打开显示简介,现在先打开右下角的小锁,然后修改everybody的权限为“读与写”即可,现在就可以继续之前的修改文档了,修改好之后保存。
2、更换ruby源
gem sources --add https://gems.ruby-china.com --remove https://rubygems.org/
3、安装ruby
curl -L get.rvm.io | bash -s stable
source ~/.bashrc
source ~/.bash_profile
如果报错:
4、安装具体版本 推荐3.0.0
rvm install 3.0.0
注意,安装前最好是已经安装了xcode和xcode tool
安装成功后指定版本
rvm use 3.0.0 --default
5、cocopoads安装,国内源公共geet安装
sudo gem install -n /usr/local/bin cocoapods
下载国内源
1、先在终端cd到repo目录:
/Users/***(电脑账号名)/.cocoapods/repos
2、将库克隆岛目录下,名称为master,原git源pod的名称为cocoapods
git clone https://gitee.com/mirrors/CocoaPods-Specs.git master
3、下载成功后,将原cocoapods文件中的.git文件复杂粘贴到新克隆的master进行文件覆盖
4、删除git源pod的名称为cocoapods文件,将新克隆的master文件更名为cocoapods
5、关闭终端,重新cd到需要pod install的项目下进行操作,即可,到这里大功告成