IT评测·应用市场-qidao123.com

标题: macOS Monterey(MacOS 12) 体系升级cocoapods踩坑指南 [打印本页]

作者: tsx81429    时间: 2025-3-23 02:13
标题: macOS Monterey(MacOS 12) 体系升级cocoapods踩坑指南
老款MacBook体系Monterey(MacOS 12)由于brew制止了从上游下载cocoapods提示不支持os12体系,无法安装最新版cocoapods,本文报告了另一种方法来更新cocoapods

原文链接:http://www.kovli.com/2024/12/18/old-macos-install-cocoapods/
作者:Kovli
重要通知:红宝书第5版2024年12月1日出炉了,感爱好的可以去看看,https://u.jd.com/8alDI4w

实验过的方法:

  1. sudo gem install cocoapods
复制代码
  1. sudo gem install cocoapods
  2. -pre
复制代码
  1. gem install cocoapods --user-install
复制代码
  1. sudo gem update cocoapods --version 1.16.2
复制代码
均无法成功安装,体系ruby是2.6
厥后实验用brew安装

  1. brew install ruby
复制代码
提示报错如下:
  1. Error: Your Command Line Tools are too outdated.
  2. Update them from Software Update in System Preferences.
  3. If that doesn't show you any updates, run:
  4.   sudo rm -rf /Library/Developer/CommandLineTools
  5.   sudo xcode-select --install
  6. Alternatively, manually download them from:
  7.   https://developer.apple.com/download/all/.
  8. You should download the Command Line Tools for Xcode 14.2.
复制代码
颠末查抄是安装了命令行工具14.2的,也重复安装一遍照旧报错同样错误,判定是版本太低不支持,但是xCode14.2已经是OS12体系的最新版本了,受限于体系无法升级。
于是想着升级下当前体系所支持的最高ruby版本2.7.2

  1. brew install ruby
  2. @2.7
复制代码
报错如下,
  1. Error: ruby@2.7 has been disabled because it is not supported upstream! It was disabled on 2024-06-15.
复制代码
实验brew安装ruby2.6

  1. brew install ruby
  2. @2.6
复制代码
报错如下
  1. No available formula with the name "ruby@2.6". Did you mean ruby@2.7, ruby@3.2, ruby@3.1 or ruby@3.0?
复制代码
也就是说brew只支持安装ruby3以上

于是安装3.0版本试试

  1. brew install ruby
  2. @3.0
复制代码
结果报错如下
  1. Error: You are using macOS 12.
  2. We (and Apple) do not provide support for this old version.
复制代码
说明brew已经不支持macOS12体系安装ruby3了,到这里可以看出,brew在macOS12体系已经安装不了ruby了

于是思量用rvm

  1. curl -L get.rvm.io | bash -s stable
复制代码
顺利安装了rvm最新版
  1. rvm 1.29.12 (latest) by Michal Papis, Piotr Kuczynski, Wayne E. Seguin [https://rvm.io]
复制代码
先实验安装ruby 3以上的,结果没成功,颠末查询,最高支持安装2.7.2
  1. rvm install 2.7.2
复制代码
提示报错
  1. Error running '__rvm_make -j8',
复制代码
经查抄题目出在openssl
卸载openssl
  1. brew uninstall --ignore-dependencies openssl@3
复制代码
重装低版本
  1.     rm -rf /usr/local/etc/openssl@1.1
复制代码
  1.     brew reinstall openssl@1.1
复制代码
提示报错
  1. Error: openssl@1.1 has been disabled because it is not supported upstream! It was disabled on 2024-10-24.
复制代码
此时有种换电脑的冲动了,但是不想让老外的计谋得逞,继续努力兼容!

  1. brew edit openssl@1.1
复制代码
会提示编辑如下文件
  1. Editing /usr/local/opt/openssl@1.1/.brew/openssl@1.1.rb
复制代码
通过编辑器或者vim编辑,注释下面这行
  1.   deprecate! date: "2023-11-11", because: :unsupported
复制代码
  1.   # deprecate! date: "2023-11-11", because: :unsupported
复制代码
然后执行:

  1. HOMEBREW_NO_INSTALL_FROM_API=1 brew install openssl@1.1
复制代码
HOMEBREW_NO_INSTALL_FROM_API=1 这个环境变量的作用就是告诉brew 不利用api中的formula而是利用你本身编辑后的, 这样就可以正常安装被brew克制disable的软件包了。

上面的执行完再次安装2.7.2就可以成功
  1. rvm install 2.7.2
复制代码
设为默认ruby
  1. rvm use 2.7.2 --default
复制代码
更新了ruby从体系默认的2.6到rvm安装的2.7.2后再次实验安装cocoapods
  1. sudo gem install cocoapods
  2. -v 1.16.2 -n /usr/local/bin
复制代码
提示报错
  1. ERROR:  Error installing cocoapods:
  2.         The last version of securerandom (>= 0.3) to support your Ruby & RubyGems was 0.3.2. Try installing it with `gem install securerandom -v 0.3.2` and then running the current command again
  3.         securerandom requires Ruby version >= 3.1.0. The current ruby version is 2.7.2.137.
复制代码
按照指引继续安装securerandom
  1. sudo gem install -n /usr/local/bin securerandom -v 0.3.2
复制代码
然后重试
  1. sudo gem install cocoapods
  2. -v 1.16.2 -n /usr/local/bin
复制代码
提示报错
  1. ERROR:  Error installing cocoapods:
  2.         The last version of activesupport (>= 5.0, < 8) to support your Ruby & RubyGems was 7.1.5.1. Try installing it with `gem install activesupport -v 7.1.5.1` and then running the current command again
  3.         activesupport requires Ruby version >= 3.1.0. The current ruby version is 2.7.2.137.
复制代码
按照指引开始安装activesupport
  1. sudo gem install -n /usr/local/bin activesupport -v 7.1.5.1
复制代码
继续重试
  1. sudo gem install -n /usr/local/bin cocoapods -v 1.16.2
复制代码
这次终于没报错了,安装成功,查抄版本
  1. ~ pod --version
  2. 1.16.2
复制代码
成功更新到新版cocoapods
tips:

1、RVM官方网站
https://rvm.io/workflow/examples#rvm-list
2、ruby可安装的版本信息
  1. rvm list known
复制代码
3、cocoapods所有版本
https://rubygems.org/gems/cocoapods/versions
4、cocoapods官网
https://guides.cocoapods.org/using/getting-started.html

版权声明:
转载时请注明作者Kovli以及本文地点:
http://www.kovli.com/2024/12/18/old-macos-install-cocoapods/


免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。




欢迎光临 IT评测·应用市场-qidao123.com (https://dis.qidao123.com/) Powered by Discuz! X3.4