CocoaPods的安装及常见错误及解决方案

一、 执行命令 sudo gem install -n /usr/local/bin cocoapods

Could not create Makefile due to some reason, probably lack of necessary

libraries and/or headers.  Check the mkmf.log file for more details.  You may

need configuration options

出现这个问题需要重新考虑braw和ruby是否安装正确,  如果是braw没有安装最新的版本 使用这个命令:/bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)"

ruby的问题先检查版本号:

ruby -v

rvm list known

使用RVM安装新版本的 rvm install2.7.2 

参考: https://zhuanlan.zhihu.com/p/111014448

二、 CDN: trunk URL couldn't be downloaded: https://cdn.cocoapods.org/Specs/0/a/a/ZLPhotoBrowser/2.5.0/ZLPhotoBrowser.podspec.json Response: Timeout was reached

CocoaPods的安装及常见错误及解决方案_第1张图片

按照官方文档在 podfile文件中添加source源:

source 'https://github.com/CocoaPods/Specs.git'

podfile文件中添加source源后,pod install和pod update可以正常操作,但是pod search有些库却不正常,此时可以在终端执行

pod repo remove trunk

移除trunk源,执行完就OK了!

参考文章:

1>.官方文档

2>.Github Issules

2. ERROR: Failed to build gem native extension

CocoaPods的安装及常见错误及解决方案_第2张图片

解决:因为没有Xcode或者安装了多个Xcode导致的,如果没有安装请先安装Xcode即可

4. 建好Podfile,并在命令行中输入pod install,结果报以下错误:

[!] The XXX target overrides the 'OTHER_LDFLAGS' build setting defined in

'Pods/Target Support Files/Pods/Pods.debug.xcconfig'.

This can lead to problems with the CocoaPods installation

- Use the '$(inherited)' flag, or

- Remove the build settings from the target.

[!] The 'SubWayWifi [Release]' target overrides the 'OTHER_LDFLAGS' build setting defined in

'Pods/Target Support Files/Pods/Pods.release.xcconfig'.

This can lead to problems with the CocoaPods installation

- Use the '$(inherited)' flag, or

- Remove the build settings from the target.

现在打开有pods建好的workspace文件,尝试编译,会报ld: library not found for -lPods错误,原因就是工程里面的设置项覆盖了pods中xcconfig中的设置。解决办法就是在build setting->other linker flag中,加上$(inherited)即可。

OK,重新安装pod试试,由于我们已经进行过一次安装,所以本次只用更新一次即可,在命令行中输入pod update,现在没有报任何错误。但是当我尝试编译工程的时候,又报了一个错误:ld: library not found for -lReactiveCocoa。咋又找不到相应的第三方库了呢?好吧,继续查资料。

还是在cocoapods的官网Troubleshooting找到的解决办法。在Edit Scheme中,找到Build项,点击+号,找到Pods静态库,点击Add。再尝试编译,编译通过。(该方案作者 ray_xia);

借此之后还有不少优秀的方案可以借鉴一下:

使用CocoaPods过程中的几个问题

使用CocoaPods过程中 Unable to find a specification for

CocoaPods的安装及常见错误解决办法

ld: library not found for -lXXXXX 编译问题的解决方法

(简单来说不论遇到什么问题,首先不要慌,仔细分析这个问题是怎么出现的.一定要看报错原因,根据原因做出相应的调整,有时候可能是你一个很简单的失误造成的 ! 安啦 问题就是用来解决的咯!)

希望能过帮到遇到相关问题的伙伴!

你可能感兴趣的:(CocoaPods的安装及常见错误及解决方案)