嗨,我是新的ios和在我的我正在尝试安装"OpenWebRTC“pod文件,如下面的格式,当我试图安装它们时,我得到以下错误,请帮助我
platform :ios, '9.0'
target 'videoCallApp' do
pod 'OpenWebRTC', '~> 0.1'
pod 'OpenWebRTC-SDK', :git => 'https://github.com/EricssonResearch/openwebrtc-ios-sdk.git'
end错误:-
Analyzing dependencies
Pre-downloading: `OpenWebRTC-SDK` from `https://github.com/EricssonResearch/openwebrtc-ios-sdk.git`
Downloading dependencies
Installing OpenWebRTC (0.3.1)
[!] Error installing OpenWebRTC
[!] /usr/bin/curl -f -L -o /var/folders/7y/xc2v__vx44n0t1d875wv3zbh0000gn/T/d20160611-17948-zbondp/file.zip http://static.verkstad.net/OpenWebRTC_0.3.1.zip --create-dirs --netrc
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0curl: (52) Empty reply from server发布于 2016-07-13 17:11:18
我遇到了这个问题,并使用here中的以下建议对其进行了分类
尝试运行rm -rf pod / Podfile.lock,然后重新运行pod install。
一旦我这样做了,它就完美地工作了。希望这能有所帮助。
https://stackoverflow.com/questions/37761716
复制相似问题