我是处理pods的新手,现在我正在尝试将alamofire更新为alamofire 3.0以及将SwiftyJSON更新为2.3.0以获得Swift 2.0支持 转到项目目录后:
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.0'
use_frameworks!
pod 'Alamofire', '~> 3.0'
pod 'SwiftyJSON', '~> 2.3.0'
但是我得到了这些错误:
-bash: https://github.com/CocoaPods/Specs.git: No such file or directory
Mes-iMac:MyProject.xcodeproj Me$ platform :ios, '8.0'
-bash: platform: command not found
Mes-iMac:MyProject.xcodeproj Me$ use_frameworks!
-bash: use_frameworks!: command not found
Mes-iMac:MyProject.xcodeproj Me$
Mes-iMac:MyProject.xcodeproj Me$ pod 'Alamofire', '~> 3.0'
[!] Unknown command: `Alamofire,`
[!] Unknown command: `SwiftyJSON,`
有任何帮助吗?感谢
答案 0 :(得分:1)
您可以访问https://cocoapods.org/并找到您的图书馆。然后像这样复制链接:
在您的Podfile中使用pod 'SwiftyJSON', '~> 2.3'
和pod 'Alamofire', '~> 3.1'
Podfile
将如下所示:
# Uncomment this line to define a global platform for your project
platform :ios, '8.0'
# Uncomment this line if you're using Swift
use_frameworks!
target 'YourProjectName' do
pod 'SwiftyJSON', '~> 2.3'
pod 'Alamofire', '~> 3.1'
end
再次运行 pod install