xcode Pod安装:找不到目标的源引用

8fq7wneg  于 2022-11-18  发布在  其他
关注(0)|答案(2)|浏览(217)

在macOS终端中,每当我尝试为任何Xcode项目运行pod install时,我总是收到[!] Unable to find source ref ...错误消息。

完整错误消息示例:

1.[!]找不到目的CLTypingLabelCLTypingLabel.swift来源指涉。
1.[!]找不到目标SVProgressHUDSVIndefiniteAnimatedView.m的源引用
1.[!]找不到目的SDWebImageNSButton+WebCache.m来源指涉。

播客文件:

platform :ios, '13.0'

target 'Myapp iOS13' do
     use_frameworks!

  pod 'CLTypingLabel'

end
vc6uscn9

vc6uscn91#

我找到了让CocoaPods工作的方法!看起来在辅助macbook帐户上安装pod可能会有问题,即使该帐户有完全的管理员权限。我登录了在macbook上创建的主要或初始帐户,安装了CocoaPods,pod install能够安装依赖项。我还需要在主要帐户上工作我的项目。

l7mqbcuq

l7mqbcuq2#

我的解决方案,brew必须先卸载:

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

brew uninstall cocoapods
brew uninstall ruby

sudo gem install ffi

sudo gem install cocoapods

稍后删除(#)(#平台:ios,“15.0”)并更改(“15.0”):

# Uncomment the next line to define a global platform for your project    
 platform :ios, '15.0'
    
 target 'Myapp' do
 # Comment the next line if you don't want to use dynamic frameworks
 use_frameworks!
    
pod 'CLTypingLabel'
    
 end

最后

pod install

相关问题