我参考了许多链接并尝试了,但我没有成功。我阅读了CocoaPods文档,并多次尝试安装,但总是因为初始步骤而失败。我发现了一个错误,我不能先安装宝石。一个一个的步骤是什么?例如如何安装的步骤或演示。

这是我尝试过的一个链接。

截图指的是我得到的这个控制台错误:


当前回答

这里是一个图像的所有步骤。请按照它正确,我相信你不会得到任何错误。

从如何安装CocoaPods和设置你的Xcode项目。


首先,检查是否必须安装命令行。

你可以打开Xcode,在菜单中导航到 Xcode→首选项→下载→组件。找到命令行工具并选择安装/更新。

如果你没有找到命令行工具,那么你需要在终端上写这个命令:

xcode-select --install

然后点击安装。

如果你已经安装了命令行工具,你需要选择你的Xcode目录(有时这些类型的问题是由于可用的Xcode版本不同造成的)

遵循这个步骤。

打开终端,执行如下命令: Sudo gem安装cocoapods 输入“admin”密码。这可能需要一段时间。几分钟后,它 将显示绿色信息,如果CocoaPods成功安装在您的 Mac机。 如果你在Xcode 6中出现任何错误,比如开发者路径 失踪。首先在终端运行这个命令: sudo xcode-select -switch /Applications/Xcode6。app(或你的XCodeName.app) 现在你可以用你的Xcode项目设置Pod了。

现在你必须安装吊舱。遵循这个步骤。

打开终端 更改目录到您的Xcode项目根目录(其中您的 ProjectName。放置Xcodeproj文件)。 pod设置:(设置CocoaPods主库) 如果成功,将显示:安装完成(只读访问)。所以, 一切都是你安排的。现在让我们做一些更明显的事情。让我们在Xcode项目中安装库。

现在你必须在你的项目中设置和更新与pod相关的库。

Steps to add-remove-update libraries in pod: Open Terminal Change directory to your Xcode project root directory. If your terminal is already running then there isn't any need to do this, as you are already at the same path. touch pod file open -e podfile (This should open a blank text file) Add your library names in that text file. You can add new names (library name), remove any name or change the version, e.g.: pod ’Facebook-iOS-SDK’ pod ’EGOTableViewPullRefresh’ pod ’JSONKit’ pod ‘MBProgressHUD NOTE: Use the (control + ”) button to add single quote at both end of library name. It should be shown as straight vertical line. Without control button it shall be added as curly single quote which will give error while installation of file. Save and close this text file. Now libraries are set up and you have to install/update it Go to your terminal again and run this command: pod install (to install/update these libraries in pod). You should see output similar to the following: Updating spec repo `master’ \ Installing Facebook-iOS-SDK \ Generating support files

设置完成。

注意:

如果你正确地一步一步地遵循了这整个过程,那么你可以在选择Xcode后直接触发pod更新命令,然后选择你的项目路径。并编写命令荚更新。

你也可以在这里检查命令行工具:

其他回答

在macOS大苏尔工作

安装最新版本的brew (https://treehouse.github.io/installation-guides/mac/homebrew)

2 .然后使用“brew uninstall cocoapods”

3使用“brew install cocoapods”安装最新版本的cocoapods(你必须用github version https://github.com/CocoaPods/CocoaPods/releases/tag/1.11.2验证安装版本,它们必须匹配)

4 .用“brew link—overwrite cocoapods”覆盖cocoapods链接

5 .查看cocoapods的版本“pod——version”

你已经安装了最新版本的cocoapods

打开终端 在终端输入$ sudo gem install cocoapods命令 创建新的Xcode项目 导航到包含Xcode项目的目录。使用cd " ../directory-location/..或CD[拖放项目文件夹] 圆荚体安装

如果此提示错误,无法添加带有url的源..然后安装Xcode的命令行工具。再次,重新运行Pod安装命令。

这也将安装所有依赖项。

现在,在工作区中打开你的项目,即项目名称。xcworkspace而不是Project-Name.xcodeproj

对于终端中的CocoaPods,请遵循以下命令:

sudo gem update

sudo gem install cocoapods

pod setup

cd (project direct drag link)

pod init

open -aXcode podfile # (If it’s already open, add your pod file name. Example: alamofire4.3)

pod install

pod update

安装pod文件的简单步骤:

打开终端 终端命令:sudo gem install cocoapods 在终端中设置项目路径。 命令:pod init 转到项目的pod文件,并添加要安装的pod 添加到pod文件:pod 'AFNetworking', '~> 3.0 . 命令:Pod install 关闭Xcode项目 从终端打开项目 命令:打开PodDemos.xcworkspace

这些是我通常遵循的完整步骤。我把这些步骤写得尽可能短,假设你了解Mac和Xcode项目。首先,打开终端,使用以下命令,每个命令后按enter键。

如果你还没有安装CocoaPods,输入以下命令:

sudo gem install cocoapods

现在请使用以下命令移动到您的Xcode项目目录,并将/您的Xcode项目目录路径替换为该目录的实际路径:

cd /Your Xcode Project Directory Path

下面是如何使用CocoaPods的说明。输入到终端的每个命令执行成功后,请等待一段时间。

Searching for pods in terminal: pod search networking (replace networking with which you want to search) Creating the pod file: pod init Opening the pod file: open -a Xcode Podfile Adding the pods: (After adding your pods you must save the podfile first and then head back to the terminal again.) target 'WebServiceUsingMantleAFNetworking' do # platform :ios, '8.0' //Choose your version of iOS pod 'AFNetworking', '~> 2.6.0’ end OR platform :ios, '8.0' pod 'AFNetworking' pod 'Mantle' pod 'LBBlurredImage' pod 'TSMessages' pod 'ReactiveCocoa' Installing the pods: pod install Check for updates of pods on existing project: pod outdated Update the existing pods: pod update Uninstall the Cocoapods from system: sudo gem uninstall cocoapods There is a complete tutorial for removing pods from your Xcode project on Stack Overflow. You can check on this following link for more info. How to remove CocoaPods from a project?