gpt4 book ai didi

swift - Cocoapod swifty json 问题

转载 作者:行者123 更新时间:2023-11-28 09:02:19 25 4
gpt4 key购买 nike

我在项目的依赖管理方面遇到了一些困难。我目前已经设法让 Alamofire 成功运行,现在我希望为我的项目添加一个新的依赖项。

按照此处的指南 - https://github.com/SwiftyJSON/SwiftyJSON它告诉我将以下内容添加到我的 pod 文件中

platform :ios, '8.0'
use_frameworks!

target 'Relocate' do
pod 'SwiftyJSON', '~> 2.2.1'
end

这意味着我的 pod 文件现在如下所示;

source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.0'
use_frameworks!

pod 'Alamofire', '~> 1.3'

platform :ios, '8.0'
use_frameworks!

target 'Relocate' do
pod 'SwiftyJSON', '~> 2.2.1'
end

问题是,当我运行 pod install 命令时,出现以下错误

Rickis-iMac:Relocate rickilambert$ pod install
Updating local specs repositories
Analyzing dependencies
[!] Unable to satisfy the following requirements:

- `SwiftyJSON (~> 2.2.1)` required by `Podfile`

有谁知道我该如何解决这个问题?

谢谢

最佳答案

我的 Podfile 完全按照下面的方式执行,从来没有遇到过问题。尝试将其粘贴并运行 pod install

source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.0'
use_frameworks!

pod 'Alamofire', '~> 1.3'
pod 'SwiftyJSON', '~> 2.2.1'

关于swift - Cocoapod swifty json 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31685885/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com