今天新苹果机安装cocoapods,安装完以后发现怎么pod search 都没有用 命令行提示: swhcxp@iosdevmac ~ % pod search Almofire Setup completed [!] Unable to find a pod with name, author, summary, or description matching `Almofire` 然后我重装homebrew , RVM, Ruby,Cocoapods,都安装到最新还是没用 Homebrew…
pod search报错的原因: 每次使用pod search命令的使用会在该目录下生成一个search_index.json文件,会逐渐的增大,文件达到一定大小后,ruby解析里面的json字符就会报错 解决方案是找到Cocoapods产生caches的目录进行清空操作就解决了! 正确的目录是  ~/Library/Caches/CocoaPods/ 而不是  /Library/Caches/CocoaPods/ 这两个目录是有区别的,刚从这个坑了爬出来!…
清除 Cocoapods 本地缓存 特殊情况下,由于网络或者别的原因,通过 cocoapods 下载的文件可能会有问题.这时候可以删除 Cocoapods 的缓存(~/Library/Caches/Cocoapods/Pods/Pods/Release 目录)再次导入即可.…
环境:Xcode7.1.1 详细错误: *** Assertion failure in -[UITableView _configureCellForDisplay:forIndexPath:], /BuildRoot/Library/Caches/com.apple.xbs/Sources/UIKit_Sim/UIKit-3512.29.5/UITableView.m:7943 这个问题造成的主要原因就是tableView 获取单元格详细内容的时候最后返回的是空. 原因1:看加载的时候模型数…
Mac系统下安装pycharm后启动出现System path '/Users/hxy/Library/Caches/PyCharm2018.2' is invalid.问题: 1.出现原因: 1.1)安装过Idea或其他版本的pycharm,故存在相似关联文件的问题: 1.2)该目录下不能通过当前登陆用户具有的权限创建新的目录: 2.解决办法: 1)1.1中的情况,可直接清理Cache目录下的文件解决问题: rm -rf /Users/hxy/Library/Caches/ 执行后启动pych…
  Assertion failure in -[UITableView _configureCellForDisplay:forIndexPath:], /BuildRoot/Library/Caches/com.apple.xbs/Sources/UIKit_Sim/UIKit-3512.30.14/UITableView.m:7962 - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:…
解决删除域用户异常问题. System.DirectoryServices.DirectoryServicesCOMException was unhandled  Message=在服务器上没有这样一个对象. (Exception from HRESULT: 0x80072030)  Source=System.DirectoryServices  ErrorCode=-2147016656  ExtendedError=8333  ExtendedErrorMessage=0000208D:…
找到这篇文章 http://stackoverflow.com/questions/34153795/xcode-7-unable-to-open-instruments-from-developer-tools 在/Library/Caches中找到/Library/Caches/com.apple.dt.instruments 看有没有重复的 有重复的删掉一个旧版本…
找到问题的原因后于是换个思路,想大概修复了python,Ubuntu进入桌面应该也就没啥问题了.于是重新安装Python发现还是无济于事.也通过/usr/bin/python: can't find '__main__.py' in '/usr/share/command-not-found'去google搜索(百度等根本搜不到),着上面的方案去做发现还是不行,折腾了一天.后来想到直接去帖请教,最终得到了帮助,一条命令砸下去问题搞定.真是神了!命令如下,该条命令也就是让你重装Ubuntu: su…
  http://blog.csdn.net/samoy/article/details/51956799   有时候,我们在执行pod install或pod search命令时,会在终端偶现卡在’pod setup’界面的情况, 其实,该情况也许并非真的卡住,下面给出两种解决方案. 方案1: 在执行pod install命令时加上参数--verbose即:pod install 'ThirdPartyName' --verbose,可在终端详细显示安装信息,看到pod目前正在做什么(其实是在…