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

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

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


如果你在代理后面,那么将代理作为参数传递:

sudo gem install --http-proxy http://user:password@www-proxy.example.com:80 cocoapods

容器安装

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.)


检查这个

gem install -p http://proxy_ip:proxy_port compass

你可能需要添加你的用户名和密码:

gem install -p http://[username]:[password]@proxy_ip:proxy_port compass

检查这个链接,它可能会帮助你。


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

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

这也将安装所有依赖项。

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


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

从如何安装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更新命令,然后选择你的项目路径。并编写命令荚更新。

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


这些是我通常遵循的完整步骤。我把这些步骤写得尽可能短,假设你了解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?


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

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

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


CocoaPods安装步骤:

打开终端:

sudo gem update --system

sudo gem install activesupport -v 4.2.6

sudo gem install cocoapods

pod setup

pod setup --verbose

然后用Terminal进入你的项目目录:

cd Your Project Path

然后在终端输入如下命令:

pod init

open -a Xcode Podfile

(编辑一个文件的豆荚和一个“天光”)

pod install

对我来说,最简单的方法是通过Ruby gem安装:

sudo gem install cocoapods -v

请注意-v的详细信息。安装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

通常我们使用

sudo gem install cocoapods

解决方案,修复CocoaPods错误在Mac OS X v10.11 (El Capitan):

sudo gem install -n /usr/local/bin cocoapods
pod setup
cd /project path
pod init

在Podfile中,我们需要设置目标

# Podfile

platform :ios, '9.0'

use_frameworks!

# My other pods

target “Projectname” do

    pod 'MBProgressHUD', '~> 0.8'
    pod 'Reachability', '~> 3.1.1'
    pod 'AFNetworking', '~> 2.2'
    pod 'TPKeyboardAvoiding', '~> 1.2'

end

target 'ProjectnameTests' do
    testing_pods
end

target 'ProjectnameUITests' do
    testing_pods
end

在控制台终端

pod install

Pod安装在Mac OS X v10.11.2 (El Capitan)上出现错误:

安装cocoapods时出错: activesupport要求Ruby版本>= 2.2.2。

在得到这个错误后,我尝试了这个命令并重新安装。这对我很管用。

sudo gem install activesupport -v 4.2.6

现在尝试相同的pod安装命令

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

首先打开终端 然后用命令更新您的gem文件 Sudo gem install -n /usr/local/bin cocoapods . sh 然后给出你的项目路径 CD /项目路径 摸摸脚洞 触摸podfile 打开你的podfile 打开-e podfile 它将像文本编辑一样打开podfile。然后设定目标。例如,如果你想设置谷歌地图,那么你的podfile应该是这样的 use_frameworks ! 目标'yourProjectName'做 豆荚的GoogleMaps 结束 然后安装吊舱 圆荚体安装


打开终端 如果你没有cocoapods,输入sudo gem install cocoapods 输入“cd /工程路径”,但要替换为实际工程路径 触摸podfile 使用以下命令之一打开podfile: open -e podfile以TextEdit或 在Xcode中打开pod文件 设置目标并添加GoogleMaps pod文件,如下所示: 目标“项目名称在这里”做 豆荚的GoogleMaps 结束 使用pod install来安装依赖项


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


对于终端中的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


CocoaPods安装在macOS v10.13 (High Sierra)上:

安装Homebrew - https://brew.sh/ 在终端执行以下命令: Sudo gem update—system Sudo gem install activesupport -v 4.2.6 Sudo gem install -n /usr/local/bin cocoapods . sh 舱设置 Pod设置—详细


你可以在macOS中通过Homebrew安装CocoaPods。

首先,打开您的终端,并运行以下代码(如果没有安装Homebrew,则用于安装):

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

然后通过以下命令轻松安装CocoaPods:

brew install cocoapods

如果您想为您的项目第一次安装CocoaPods。

示例:在这里,我们将使用CocoaPods逐步安装“Alamofire”SDK。

步骤1。打开终端,点击命令,然后按Enter键

sudo gem install cocoapods

步骤2。如果它要求,您应该提供系统密码,然后按Enter键

步骤3。使用命令“cd”并给出项目的路径,然后按Enter键

注意:输入“cd”命令,然后空格并拖动项目文件夹到终端。它将采取如下所示的项目路径(这里我的项目名称是:Simple Alamofire)

cd  /Users/ramdhanchoudhary/Documents/Swift\ Workspace/Simple\
Alamofire

步骤4。在你的项目中通过终端通过命令“touch Podfile”并按“Enter”创建一个pod文件

touch Podfile

第5步。然后用终端命令“open Podfile”打开“Podfile”,按“Enter”键

open Podfile

步骤6。现在在打开的pod文件中输入以下代码,然后保存并关闭文件

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

    target '<Your Target Name>' do
            pod 'Alamofire', '~> 4.0'
    end

步骤7。回到终端键入命令“Pod install”,然后按Enter键。

Pod install

步骤8。等待安装完成100%,大约650+ MB

第9步。这就是它去项目文件夹,并打开下面的文件

<your project name>.xcworkspace

第10步。导入Alamofire类并使用!!

import Alamofire

多亏了SwiftBoy的10步解决方案,我成功地使用CocoaPods设置了最新版本的AudioKit。

1. 使用Xcode创建MyAudioApp Swift项目,将其保存到我的开发者目录。

    /Users/me/Developer/MyAudioApp

2. 使用Cocoapods在MyAudioApp项目中安装AudioKit(即安装AudioKit sdk)

3.打开终端,键入下面的命令并按Enter

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

4. 输入系统密码,按“Enter”

5. 在终端中,键入下面的命令并按Enter

    cd /Users/me/Developer/MyAudioApp

6. 在下面的终端类型命令中创建项目pod文件并按Enter

    touch Podfile

7. 在下面的终端类型命令中打开项目pod文件并按Enter(在TextEdit中打开)

    open Podfile

8. 编辑下面的代码到打开的pod文件(并在退出TextEdit之前保存文件)

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

        target 'MyAudioApp' do
        pod 'AudioKit', '~> 4.7'
    end

9. 在下面的MyAudioApp工作空间类型Terminal命令中安装AudioKit并按Enter

    Pod install     

等待安装完成

10. 在Finder中,进入项目文件夹/Users/me/Developer/MyAudioApp 然后点击下面的。xcworkspace文件(在Xcode中打开!)

    /Users/me/Developer/MyAudioApp/MyAudioApp.xcworkspace

11. 在MyAudioApp中编辑ViewController.swift并插入以下内容

    import AudioKit 

在macOS v10.14 (Mojave)和Xcode 10.3上,我收到了来自gem路由的可怕警告,无论是否使用-n /usr/local/bin:

xcodeproj's executable "xcodeproj" conflicts with /usr/local/bin/xcodeproj
Overwrite the executable? [yN]

对我来说有用的仍然是Homebrew。只是:

brew install cocoapods

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

这对我很管用。-n用于修复权限错误。


2020年,在macOS v10.15 (Catalina)中安装CocoaPods v1.9.1

首先在Mac上使用终端设置Xcode版本。 sudo xcode-select -switch /Applications/Xcode.app 接下来,使用终端安装CocoaPods。 Sudo gem安装cocoapods

更多信息,请访问官方网站https://cocoapods.org/。


macOS v10.15 (Catalina):

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

最新的CocoaPods 1.10.0似乎不能正常工作。

我在安装CocoaPods的麻烦中找到了答案。


在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


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来使用您的库。


在更新到macOS 12.1后,我在mac上也遇到了同样的问题 此外,在mac机器上安装Ruby框架可能会出现错误。

你只需要从mac中完全移除可可荚,然后重新安装cocoapods 然后重新安装项目吊舱

这将解决你的问题


在mac M1上 我安装了两个cocoapods,一个用的是啤酒,一个用的是宝石。有两个不同的版本。 在看了你的很多帖子,尝试了很多事情之后,我遇到了各种各样的麻烦。

最后,这一点帮助了我:感谢Evan

他的帖子:https://stackoverflow.com/a/70600723/2355088

对我来说,最后的工作顺序可能是:

Sudo宝石卸载cocoapods 酿造卸载cocoapods 酿造安装椰荚 酿造重新安装红宝石 重启所有条款<=神奇的一步,谢谢你埃文 cd myProj 圆荚体安装


苹果Silicon Mac

$ sudo gem uninstall ffi && sudo gem install ffi -- --enable-libffi-alloc