安装PonyDebugger的一些坑

作者: Lonely__M | 来源:发表于2015-07-23 09:27 被阅读1355次

    PonyDebugger

    PonyDebugger是Square开源的一款iOS调试工具,使用PonyDebugger可以方便调试iOS应用的页面继承关系,Coredata,以及网络请求,并且还可以输出日志。 PonyDebugger 的项目地址 :https://github.com/square/PonyDebugger

    按照PonyDebugger 提供的安装文档大概率会出现问题,一般都会出现 Could not find any downloads that satisfy the requirement pybonjour (from ponydebugger) 
    出现上面的问题一般有两个原因,国内墙了code.google.com,造成无法下载到pybonjour。这个问题只能靠翻墙来解决,或者自己下载好pybonjour,然后修改PonyDebugger 的相关配置去解决(理论是可行的,没有去尝试) 另外一个原因就是Mac OSX 升级到10.9 以后,PonyDebugger的安装脚本没有同步升级,造成 pybonjour 安装出现问题。 那么如何修复呢,就需要我们手动安装PonyDebugger。
    1 首先下载安装脚本 curl -O https://cloud.github.com/downloads/square/PonyDebugger/bootstrap-ponyd.py 
    
    2 安装 python bootstrap-ponyd.py --ponyd-symlink=/usr/local/bin/ponyd ~/Library/PonyDebugger 
    这时候同样会报上面的错误,不去管它.
    
    3 修复更新,依次执行下面的脚本 
    (1)source ~/Library/PonyDebugger/bin/activate 
    
    (2)pip install -U -e git+https://github.com/square/PonyDebugger.git#egg=ponydebugger --allow-external pybonjour --allow-unverified pybonjour 
    
    (3)ponyd update-devtools 
    
    4 执行完成之后大多数情况应该是成功的,执行
    
    ponyd serve --listen-interface=127.0.0.1
    
    出现 
    
    PonyGateway starting. Listening on http://127.0.0.1:9000
    
    就表示启动成功了,打开浏览器,输入 http://localhost:9000,成功界面如下:
    

    PonyDebugger简单使用指南

    PonyGateway界面

    相关文章

      网友评论

        本文标题:安装PonyDebugger的一些坑

        本文链接:https://www.haomeiwen.com/subject/cmopqttx.html