报错: Errno::ENOENT - No such file or directory
这个错误一般会提示一堆如下的错误
- No such file or directory @ rb_file_s_stat - ../Pods/directory
/usr/local/Cellar/ruby/2.2.3/lib/ruby/2.2.0/fileutils.rb:904:in `stat'
/usr/local/Cellar/ruby/2.2.3/lib/ruby/2.2.0/fileutils.rb:904:in `symbolic_modes_to_i'
/usr/local/Cellar/ruby/2.2.3/lib/ruby/2.2.0/fileutils.rb:951:in `fu_mode'
/usr/local/Cellar/ruby/2.2.3/lib/ruby/2.2.0/fileutils.rb:1025:in `block (2 levels) in chmod_R'
/usr/local/Cellar/ruby/2.2.3/lib/ruby/2.2.0/fileutils.rb:1477:in `preorder_traverse'
/usr/local/Cellar/ruby/2.2.3/lib/ruby/2.2.0/fileutils.rb:1023:in `block in chmod_R'
网上很多说用这个解决办法用 pod setup
更新一下spec库, 然后我照做了还是继续报错, 最后找到解决办法就是, 删除提示报错的Pods/directory
里面的directory目录然后pod install
就好了, 如果还是不行就把Pods
整个文件夹删了.
- No such file or directory @ rb_file_s_stat - ../Pods/directory
参考文献:
GitHub讨论
CocoaPods的SSL报错
最近把CocoaPods升级到0.38之后导入高德地图的SDK.
pod install
终端一直提示这个错误:
Failed to send stats: SSL_connect returned=1 errno=0 state=SSLv2/v3 read server hello A: sslv3 alert handshake failure
解决方法1:
gem
版本过低也会导致这个报错. 我的Mac之前版本是2.0.0
,用gem --version
查看版本信息.
1.终端sudo gem update --system
把版本升级到2.4.8
2.如果pod install
还抱那个错误, 那么就把Ruby的源替换成https
的淘宝.
gem sources --remove https://rubygems.org/
$ gem sources -a https://ruby.taobao.org/
$ gem sources -l
*** CURRENT SOURCES ***
https://ruby.taobao.org
# 请确保只有 ruby.taobao.org
3.如果继续报错, 那么就把cocoapods升级到0.39.0.beta.0
sudo gem install cocoapods -v 0.39.0.beta.4
如果还报错那么久用第二种方法....
参考文献
bundle install fails with SSL certificate verification error,
Cocoapods Version Note,
淘宝Ruby
解决方法2:
把CocoaPods的0.38.x 降到0.37版本.
于是使用sudo gem uninstall cocoapods
把0.38版本删掉了,CocoaPods会保留历史版本, 但是默认使用最新的版本, 如果你之前有安装过0.37, 那么删掉就正常了.
如果没有安装以前的版本, 那么就用这个命令安装一个指定版本sudo gem install cocoapods -v 0.25.0
最后的数字替换成你需要的版本号
参考文献:
Downgrading or installing older version of Cocoapods