我正在尝试使用 Cocoapod 在我的 swift 应用程序中安装 Firebase,如下所示:

pod 'Firebase/Core'
pod 'Firebase/Messaging'

但是在处理 pod install 时出现错误:
[!] Error installing nanopb
[!] /usr/bin/curl -f -L -o /var/folders/82/qk0yjdtx5xl0hnzsk2s2h30h0000gn/T/d20170722-19429-tm6t4q/file.tgz http://koti.kapsi.fi/~jpa/nanopb/download/nanopb-0.3.8.tar.gz --create-dirs --netrc-optional

  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100   330  100   330    0     0   1941      0 --:--:-- --:--:-- --:--:--  1952
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
curl: (22) The requested URL returned error: 503 Service Unavailable

只是服务器宕机?或者我错过了什么
没有 nanopb 有其他方法吗?

最佳答案

根据 https://github.com/CocoaPods/Specs/blob/master/Specs/8/b/d/FirebaseCore/4.0.4/FirebaseCore.podspec.json ,nanopb 被添加到 FirebaseCore 4.0.4 的依赖项中。

但是 nanopb 服务器现在不工作。( http://jpa.kapsi.fi/nanopb/download/nanopb-0.3.8.tar.gz )。

因此,您应该将 Firebase/Core 版本指定为 4.0.3。

pod 'Firebase/Core', '4.0.3'

10-07 23:35