AlamoFire似乎没有使用CocoaPods for tvOS -这是信息和错误消息。
pod --version - 0.39.0Podfile:
platform :tvos, '9.0'
pod 'Alamofire', :git => 'https://github.com/Alamofire/Alamofire.git', :branch => 'tvOS'航站楼:
> pod install
Updating local specs repositories
Analyzing dependencies
Pre-downloading: `Alamofire` from `https://github.com/Alamofire/Alamofire.git`, branch `tvOS`
[!] Error installing Alamofire
[!] /usr/bin/git clone https://github.com/Alamofire/Alamofire.git /var/folders/w_/90_3ly_d1xl6t0gfg9xmr52w0000gn/T/d20151111-1787-1j3pdql --single-branch --depth 1 --branch tvOS
Cloning into '/var/folders/w_/90_3ly_d1xl6t0gfg9xmr52w0000gn/T/d20151111-1787-1j3pdql'...
warning: Could not find remote branch tvOS to clone.
fatal: Remote branch tvOS not found in upstream origin发布于 2015-11-11 18:23:40
您不再需要使用特定的分支,显然tvOS分支已经被合并到主服务器中,并且它已经不存在了。
发布于 2015-11-26 21:21:13
source 'https://github.com/CocoaPods/Specs.git'
platform :tvos, '9.0'
use_frameworks!
pod 'Alamofire', '~> 3.0'为我工作
https://stackoverflow.com/questions/33652776
复制相似问题