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

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

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


当前回答

Pod文件安装步骤

sudo gem install -n /usr/local/bin cocoapods

舱设置

cd ~/Path/To/Folder/Containing/ShowTracker

touch podfile
open -a Xcode Podfile // To open it in Xcode
OPEN -e podfile       // To open it in text editor
pod install           // To install a new pod
pod update            // To update all pods

其他回答

1-在你的机器上安装Cocoapods

$ sudo gem install cocoapods

$ pod setup --verbose

2-检查你的机器上是否安装了Cocoapods ?

$ pod—版本

3-进入你的项目目录,这里有.xcodeproj

$ pod init

在使用pod init后,一个额外的文件被添加到名为Podfile的文件夹中。

4-通过双击打开podfile和pods之间的目标和结束

5-使用命令安装Pod

pod install

当你运行pod install命令时,它会安装你写在pod文件中的所有pod。安装所需的命令后,打开项目目录,您将得到2个新文件。

首先是Podfile。每次运行pod install命令-下载并安装新的pod -它会在Podfile中为每个pod写入它已经安装的版本。锁文件。

第二个是。xcworkspace -> Xcode工作空间文件可以用作Xcode . xcodeproj项目的包装器或容器。

现在使用背景为白色的.xcworkspace来使用您的库。

Mac OS X v10.11 (El captain)

RVM安装ruby-2.2.2

RVM使用ruby-2.2.2。

Sudo gem install -n /usr/local/bin cocoapods . sh

在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

这适用于Mac OS X v10.11。x (El Capitan)

sudo gem install -n /usr/local/bin cocoapods

在此之后,您可以使用pod setup cmd设置pod,然后移动到您的项目目录并安装pod。

容器安装

Open terminal and type: sudo gem install cocoapods The Gem will get installed in Ruby inside the System library. Or try on Mac OS X v10.11 (El Capitan), type: sudo gem install -n /usr/local/bin cocoapods If there is an error "activesupport requires Ruby version >= 2.xx", then install latest activesupport first by typing in the terminal. sudo gem install activesupport -v 4.2.6 After installation, there will be a lot of messages. Read them and if no error found, it means the CocoaPods installation is done. Next, you need to setup the CocoaPods master repository. Type in the terminal: pod setup And wait it will download the master repository. The size is very big (370.0 MB in December 2016). So it can be a while. You can track of the download by opening Activity and go to the Network tab and search for "git-remote-https". Alternatively, you can try adding "--verbose" to the command like so: pod setup --verbose Once done, it will output "Setup Complete", and you can create your Xcode project and save it. Then in the terminal, cd to your Xcode project root directory (where your .xcodeproj file resides) and type: pod init Then open your project's podfile by typing in terminal: open -a Xcode Podfile Your Podfile will get open in text mode. Initially there will be some default commands in there. Here is where you add your project's dependencies. For example, in the podfile, type pod 'AFNetworking', '0.9.1' (This line is an example of adding the AFNetworking library to your project.) Other tips: Uncomment platform :ios, '9.0' Uncomment use_frameworks! if you're using Swift When you are done editing the podfile, save it and close Xcode. Then install pods into your project by typing in terminal: pod install or (For m1 chip) arch -x86_64 pod install Depending how many libraries you added to your podfile for your project, the time to complete this varies. Once completed, there will be a message that says "Pod installation complete! There are X dependencies from the Podfile and X total pods installed." Now close your Xcode project. Then locate and open the .xcworkspace Xcode project file and start coding. (You should no longer open the xcodeproj file.)