解决方案就是去xcode设置里面,将Command line Tools设置一下,在Xcode>preferences>Locations里面,设置之后再运行终端即可…
xcrun: error: unable to find utility "PackageApplication", not a developer tool or in PATH     1.复制一份packageappliation 到下面目录 /applications/xcode.app/contents/developer/platforms/iphoneos.platform/developer/usr/bin/   2.执行命令 sudo code-select -swi…
在调试ios上的项目的时候出现报错 unable to find utility "instruments", not a developer tool or in PATH 报错原因: 升级过xcode或者xcode多版本共存下没有设置默认版本 解决方案: 打开xcode,选择 切换到Locations,在command line tools 中选择你需要用的版本 此时完全退出xcode,再次尝试run-ios,一切正常!…
Xcode升级到8.3后 用命令进行打包 提示下面这个错误 xcrun: error: unable to find utility "PackageApplication", not a developer tool or in PATH 后面根据对比发现新版的Xcode少了这个PackageApplication先去找个旧版的Xcode里面copy一份过来放到下面这个目录: /Applications/Xcode.app/Contents/Developer/Platforms/i…
命令行运行react-native 项目时,报错:xcrun: error: unable to find utility "instruments", not a developer tool or in PATH 解决方法:在 终端执行如下命令 sudo xcode-select -s /Applications/Xcode.app/Contents/Developer/ 注意:前提是你已经安装了xcode 原文地址:http://www.th7.cn/Program/IOS/20…
运行脚本后报错: xcrun: error: unable to find utility "PackageApplication", not a developer tool or in PATH 后面根据对比发现新版的Xcode少了这个PackageApplication(转注:PackageApplication在前几个版本已被标识为废弃,在8.3版本彻底移除了) 先去找个旧版的Xcode里面copy一份过来 放到下面这个目录: /Applications/Xcode.app/C…
xcrun: error: unable to find utility "instruments", not a developer tool or in PATH   用web storm 运行react-native 工程时,出错:xcrun: error: unable to find utility "instruments", not a developer tool or in PATH 解决办法: 解决方法:在 终端执行如下命令 sudo xcode…
解决方法:在 终端执行如下命令 sudo xcode-select -s /Applications/Xcode.app/Contents/Developer/ 注意:前提是你已经安装了xcode…
断点,调试器的功能之一,可以让程序中断在需要的地方,从而方便其分析.也可以在一次调试中设置断点,下一次只需让程序自动运行到设置断点位置,便可在上次设置断点的位置中断下来,极大的方便了操作,同时节省了时间. --百度百科 简单地说,断点调试是指自己在程序的某一行设置一个断点,调试时,程序运行到这一行就会停住,然后你可以一步一步往下调试,调试过程中可以看各个变量当前的值,出错的话,调试到出错的代码行即显示错误,停下. Sources面板 Sources面板是chrome developer tool…
这篇文章是根据目前 chrome 稳定版(19.0.1084.52 m)写的, 因为 google 也在不断完善chrome developer tool, 所以 chrome 版本不同可能稍有差别. 一些快捷键也是 windows 上的, mac 下的应该大同小异. 常规的断点相关的 breakpoint/conditional-breakpoint/call-stack/watch-expressions 等就不涉及了. 1. Beautify Javascript js 文件在上线前一般都…