如果是新电脑,首选配置下环境
先安装Xcode开发工具,它将帮你安装好 Unix 环境需要的开发包
然后安装Homebrew
顺序是Xcode,homebrew, rvm,ruby,cocoapods
安装CocoaPods需要Ruby环境,所以,首先要检查Ruby环境的版本!
1.首先要检查Mac是否安装了rvm。打开终端,输入指令rvm -v
image
2.安装,终端 curl -L get.rvm.io | bash -s stable
***可能会提示Failed to connect to raw.githubusercontent.com port 443: Connection refused
大概率是某种网络环境的问题,查询真实IP
在https://www.ipaddress.com/查询raw.githubusercontent.com的真实IP。
image
修改hostssudo vim/etc/hosts添加如下内容:199.232.28.133raw.githubusercontent.com
或者直接使用switchhost配置也行
安装完,退出终端,再输入rvm -v (终端不退出,一直显示第一步那个状态)
image
3.列出所有指定源里的ruby版本 rvm list known
image
4.安装最新的 rvm install 2.4.0
image
安装的过程中如果之前没装过 homebrew会自动安装(不知道的可以自己研究下)
安装完会给提示
image
5.检查下安装的版本 rvm list
image
6.检查ruby源 gem sources -l
image
7.移除ruby源 gem sources --removehttps://rubygems.org/
image
8.然后在添加 gem sources --addhttps://gems.ruby-china.com
image
9.在检查下
image
10.安装cocoapods , sudo gem install -n /usr/local/bin cocoapods(macOS10.11之后使用)
11.一般安装完,出现gems installed意味着你成功了,可是我出现了一个问题
image
再次使用pod,会执行很久的安装,安装时间看网速了
image
Question
1.
image
这个问题的解决参考:
1,pod repo remove master2,cd~/.cocoapods/repos3,git clone--depth1https://mirrors.bfsu.edu.cn/git/CocoaPods/Specs.git master4,rm~/Library/Caches/CocoaPods/search_index.json5,pod search afnetworking
上面的第三步之前使用的是gitclone--depth1https://github.com/CocoaPods/Specs.git master根据上面的https://www.ipaddress.com/设置了github.com的代理也不行,修改了Spec源地址可以.
3.LoadError - cannot load such file -- openssl报错**
rvm安装ruby的时候,如果出现这个问题,需要指定路径1.rvm pkg install openssl2.rvm reinstall ruby-2.7.2--with-openssl-dir=$rvm_path/usr3.如果重新打开终端执行pod--version 会报-bash:pod:command not found ,这个时候需要切换系统默认ruby版本3.1.rvmlist列出当前系统中的ruby版本3.2.rvmuse2.2.6--default指定系统默认的ruby版本
这个问题第二次恶心我了,直接解决rvm reinstall2.7.2--with-openssl-dir=/usr/local/Cellar/openssl/1.0.2q
4.使用RVM安装ruby过程中出现
Checking requirements for osx.Installing requirements for osx.Updating system.......需要先运行下面命令,再安装:rvm autolibs read-only
5.pod install卡顿失败
[!]Errorinstalling LLSegmentViewController[!]/usr/bin/git clone https://github.com/CoderLinLee/LLSegmentViewController.git/var/folders/s4/zxfnb2091y3021xvm_hj5r3r0000gn/T/d20210304-832-1lume7m--template=--single-branch--depth1--branch1.1.13Cloninginto'/var/folders/s4/zxfnb2091y3021xvm_hj5r3r0000gn/T/d20210304-832-1lume7m'...fatal:the remote end hung up unexpectedlyfatal:earlyEOFfatal:index-pack failed
这个问题也不知道是网的原因还是执行
sudo gem install cocoapods
之后好的.
然后在pod install就可以了
我测了几遍,应该是网的原因,安装失败,多pod install几次,换个网试试.
作者:陌上花开下雨天
链接:https://www.jianshu.com/p/714605170b26
来源:简书
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。