iOS开发-安装cocoapods

安装cocoapods

  • 安装cocoapods
    • 1、安装Ruby
    • 2、安装CocoaPods
    • [Which Ruby?](#Which Ruby?)
      • [Why using the macOS system Ruby is bad](#Why using the macOS system Ruby is bad)
    • [Future versions of macOS](#Future versions of macOS)
    • [CocoaPods Installation](#CocoaPods Installation)

安装cocoapods

1、安装Ruby

mac电脑,不要使用系统自带的Ruby(系统自带版本不可升级 ),因为版本旧、违反系统安全

另外,未来苹果会不再内置Ruby

  1. Install Ruby with brew install ruby.

  2. Update $PATH settings in the ~/.zshrc file.

    执行完brew install ruby后,terminal(终端)会显示下面一段话:

    If you need to have ruby first in your PATH, run:

    echo 'export PATH="/usr/local/opt/ruby/bin:$PATH"' >> ~/.zshrc

    根据提示将PATH添加到zshrc就可以了。

go 复制代码
$ open -e ~/.zshrc
然后在打开的.zshrc文件中添加
export PATH="/usr/local/opt/ruby/bin:$PATH"'
保存文件后,执行
$ source ~/.zshrc
最后验证一下
ruby -v

2、安装CocoaPods

CocoaPods官网也不建议使用系统自带的Ruby,建议使用更新版本的Ruby。

Which Ruby?

MacOS comes with a "system Ruby" pre-installed.

Use the which command to see where Ruby is installed:

powershell 复制代码
$ which ruby
/usr/bin/ruby

If you see /usr/bin/ruby, it is the pre-installed macOS system Ruby.

Some developers use the system Ruby for running sysadmin scripts. That's fine, as long as you don't alter the system Ruby by attempting to update or add gems.

For developing projects with Ruby, you should Install Ruby with Homebrew or use a version manager such as asdf, chruby, rbenv, or rvm. A version manager helps if you're juggling multiple projects and can't update all at once. For a guide that compares version managers and shows the best way to install Ruby, see Install Ruby on a Mac.

Why using the macOS system Ruby is bad

Let's take a look at the reasons why it's a bad idea to use the Mac default Ruby for development.

  1. Gem installation problems
  2. Don't violate system security
  3. Gem management
  4. The Mac's old Ruby

Future versions of macOS

Apple says:

"Scripting language runtimes such as Python, Ruby, and Perl are included in macOS for compatibility with legacy software. Future versions of macOS won't include scripting language runtimes by default, and might require you to install additional packages."

In future versions, the system Ruby may already be gone (or hidden from you). In that case, you'll need to install Ruby with Homebrew or use a version manager.

CocoaPods Installation

CocoaPods is built with Ruby and it will be installable with the default Ruby available on macOS. However, we recommend not using the system provided Ruby and instead installing a newer Ruby version separate from the system installation. You can use a Ruby Version manager such as RVM or rbenv to manage multiple Ruby versions, or you can use Homebrew to install a newer Ruby with brew install ruby.

相关推荐
编程之路从0到11 分钟前
React Native新架构之iOS端初始化源码分析
react native·ios·源码剖析·新架构·初始化流程
2501_9159214333 分钟前
在没有源码的前提下,怎么对 Swift 做混淆,IPA 混淆
android·开发语言·ios·小程序·uni-app·iphone·swift
00后程序员张14 小时前
对比 Ipa Guard 与 Swift Shield 在 iOS 应用安全处理中的使用差异
android·开发语言·ios·小程序·uni-app·iphone·swift
DisonTangor17 小时前
通义实验室开源端到端语音识别大模型—— Fun-ASR-Nano-2512
人工智能·语音识别·xcode
用户405383693517 小时前
开源语音识别FunASR入门详解
ide·macos·xcode
00后程序员张18 小时前
在 iOS 设备上同时监控 CPU、GPU 与内存的方法
android·ios·小程序·https·uni-app·iphone·webview
TheNextByte119 小时前
如何从锁定的 iPhone 中恢复照片?
ios·iphone
Maynor99620 小时前
Clawdbot手机访问完整教程:像用App一样方便
ios·智能手机·iphone
游戏开发爱好者81 天前
在 Windows、Linux 与 CI 环境下命令行上传 IPA 到 App Store
linux·windows·ios·ci/cd·小程序·uni-app·iphone
符哥20081 天前
对比ArkTsUI和Flutter和 SwiftUI 和Jetpack Compose四个框架语法及使用场景。
flutter·ios·swiftui