如何解决 pod install 问题并成功运行 pod install?

问题描述 投票:0回答:1

在干净的 macOS Sonoma 安装并安装 Xcode 15.4 后,我在尝试为客户重新编译和构建项目时遇到了同样的问题。当我运行

pod install
时,遇到以下错误:

error: EXML::ParseException - #<TypeError: wrong argument type String (expected Regexp)>
/Library/Ruby/Gems/2.6.0/gems/rexml-3.2.9/lib/rexml/source.rb:220:in `scan'
/Library/Ruby/Gems/2.6.0/gems/rexml-3.2.9/lib/rexml/source.rb:220:in `match'
/Library/Ruby/Gems/2.6.0/gems/rexml-3.2.9/lib/rexml/parsers/baseparser.rb:227:in `pull_event'
/Library/Ruby/Gems/2.6.0/gems/rexml-3.2.9/lib/rexml/parsers/baseparser.rb:207:in `pull'
/Library/Ruby/Gems/2.6.0/gems/rexml-3.2.9/lib/rexml/parsers/treeparser.rb:23:in `parse'
/Library/Ruby/Gems/2.6.0/gems/rexml-3.2.9/lib/rexml/document.rb:448:in `build'
/Library/Ruby/Gems/2.6.0/gems/rexml-3.2.9/lib/rexml/document.rb:101:in `initialize'
/Library/Ruby/Gems/2.6.0/gems/xcodeproj-1.24.0/lib/xcodeproj/workspace.rb:83:in `new'
/Library/Ruby/Gems/2.6.0/gems/xcodeproj-1.24.0/lib/xcodeproj/workspace.rb:83:in `from_s'
/Library/Ruby/Gems/2.6.0/gems/xcodeproj-1.24.0/lib/xcodeproj/workspace.rb:66:in `new_from_xcworkspace'
/Library/Ruby/Gems/2.6.0/gems/cocoapods-1.15.2/lib/cocoapods/installer/user_project_integrator.rb:102:in `create_workspace'
/Library/Ruby/Gems/2.6.0/gems/cocoapods-1.15.2/lib/cocoapods/installer/user_project_integrator.rb:71:in `integrate!'
/Library/Ruby/Gems/2.6.0/gems/cocoapods-1.15.2/lib/cocoapods/installer.rb:929:in `block in integrate_user_project'
/Library/Ruby/Gems/2.6.0/gems/cocoapods-1.15.2/lib/cocoapods/user_interface.rb:64:in `section'
/Library/Ruby/Gems/2.6.0/gems/cocoapods-1.15.2/lib/cocoapods/installer.rb:925:in `integrate_user_project'
/Library/Ruby/Gems/2.6.0/gems/cocoapods-1.15.2/lib/cocoapods/installer.rb:185:in `integrate'
/Library/Ruby/Gems/2.6.0/gems/cocoapods-1.15.2/lib/cocoapods/installer.rb:170:in `install!'
/Library/Ruby/Gems/2.6.0/gems/cocoapods-1.15.2/lib/cocoapods/command/install.rb:52:in `run'
/Library/Ruby/Gems/2.6.0/gems/claide-1.1.0/lib/claide/command.rb:334:in `run'
/Library/Ruby/Gems/2.6.0/gems/cocoapods-1.15.2/lib/cocoapods/command.rb:52:in `run'
/Library/Ruby/Gems/2.6.0/gems/cocoapods-1.15.2/bin/pod:55:in `<top (required)>'
/usr/local/bin/pod:23:in `load'
/usr/local/bin/pod:23:in `<main>'

它似乎与

rexml
宝石有关。我怎样才能解决这个问题并成功运行
pod install

ios ruby xcode cocoapods trtc.io
1个回答
0
投票

为了解决该问题,我按照以下步骤操作:

  1. 卸载的CocoaPods:

    sudo gem uninstall cocoapods
    
  2. 已卸载

    rexml

    sudo gem uninstall rexml
    
  3. 已安装CocoaPods版本1.13.0:

    sudo gem install cocoapods -v 1.13.0
    
  4. 再次卸载

    rexml
    (为了安全起见)。

  5. 已安装

    rexml
    版本3.2.4:

    sudo gem install rexml -v 3.2.4
    

执行这些步骤后,我能够成功运行

pod install
,而不会遇到
TypeError: wrong argument type String (expected Regexp)
错误。

该问题似乎是由最新版本的 CocoaPods 和

rexml
之间的兼容性问题引起的。通过将 CocoaPods 降级到版本 1.13.0 并安装特定版本的
rexml
(3.2.4),冲突得到解决。

© www.soinside.com 2019 - 2024. All rights reserved.