I am new to CocoaPods. I have followed the instructions from the very good tutorial http://www.raywenderlich.com/64546/introduction-to-cocoapods-2 and installing AFNetworking (the pod given in the tutorial) works without any problem. However, when I tried to install CorePlot with CocoaPods, I got the error message:
Downloading dependencies
Installing CorePlot (1.5.1)
[!] /bin/bash
set -e
dtrace -h -s framework/TestResources/CorePlotProbes.d -o
framework/Source/CorePlotProbes.h
sh: line 2: dtrace: command not found
And when I try with older versions of CorePlot, it does not work either. Any idea?
Thank you!
PS: BTW, my Podfile is
`# Uncomment this line to define a global platform for your project platform :ios, '8.1'
target 'test' do pod 'CorePlot' end
target 'testTests' do
end`