Pod安装不会安装pod

时间:2016-09-17 13:38:12

标签: ios iphone cocoapods

我在运行pod安装时遇到问题。

这是我的pod文件的样子:

platform :ios, '8.0'

target 'Template1' do


pod "PinterestSDK", :git => "https://github.com/pinterest/ios-pdk.git"

end

但它不会安装pod,一旦我执行 pod install ,这就是它提供的输出。

Analyzing dependencies
Downloading dependencies
Generating Pods project
Integrating client project

[!] Please close any current Xcode sessions and use `Template1.xcworkspace` for this project from now on.
Sending stats
Pod installation complete! There are 0 dependencies from the Podfile and 0 total
pods installed.

[!] The Podfile does not contain any dependencies.

我不确定是什么错误。

3 个答案:

答案 0 :(得分:2)

  1. 删除" Pods"项目目录中的目录(如果存在)

  2. 在终端,$ open -a xcode Podfile

  3. 使用此:( Podfile)

    平台:ios,' 8.0'

    目标'模板1'做

    pod“PinterestSDK”

  4. 在终端,$ cd YOUR_PROJECT_PATH

  5. pod install

答案 1 :(得分:1)

运行命令 pod install 后,您将收到一条显示在给定图像中的消息。之后只需删除 Podfile 并运行您的项目,它会自动创建另一个 Podfile 并生成包含在 pub spec.yamlenter image description here

中的依赖项

答案 2 :(得分:0)

If you are using React Native, make sure to add this on top of your pod file.

require_relative '../node_modules/react-native/scripts/react_native_pods' 

require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules' platform :ios, '10.0'