CorePlot 1.5.1无法与CocoaPods一起安装

时间:2015-02-23 18:28:43

标签: ios cocoapods core-plot

我是CocoaPods的新手。我已经按照非常好的教程http://www.raywenderlich.com/64546/introduction-to-cocoapods-2中的说明进行操作,并且安装AFNetworking(教程中给出的pod)可以正常工作。但是,当我尝试使用CocoaPods安装CorePlot时,我收到了错误消息:

  

下载依赖项

     

安装CorePlot(1.5.1)

     

[!] / bin / bash

     

set -e

     

dtrace -h -s framework / TestResources / CorePlotProbes.d -o

     

框架/源/ CorePlotProbes.h

     

sh:第2行:dtrace:未找到命令

当我尝试使用旧版本的CorePlot时,它也无法正常工作。有什么想法吗?

谢谢!

PS:BTW,我的Podfile是

<#>`#取消注释此行以定义项目的全局平台 平台:ios,&#39; 8.1&#39;

目标&#39;测试&#39;做 pod&#39; CorePlot&#39; 端

目标&#39; testTests&#39;做

end`

2 个答案:

答案 0 :(得分:0)

我尝试使用Xcode 6.1.1和CocoaPods 0.35.0的以下podfile,它运行良好:

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

platform :ios, "8.0"

target "test" do
    pod 'CorePlot'
end

target "testTests" do

end

答案 1 :(得分:0)

我终于找到了问题的根源:由于某种原因,我的〜/ .bash_profile缺少一个或多个此处列出的路径:

的/ usr / bin中:/ bin中:/ usr / sbin目录:/ sbin目录:在/ usr / local / bin中:在/ usr / X11 / bin中

这就是为什么某些功能,例如“dtrace”缺失的原因。