前提・実現したいこと
swiftを勉強し始めたばかりです。
手持ちのマニュアルに沿って、ターミナルに
% pod install
と入力しました。
発生している問題・エラーメッセージ
Analyzing dependencies /Library/Ruby/Gems/2.6.0/gems/ethon-0.15.0/lib/ethon/curls/classes.rb:36: [BUG] Illegal instruction at 0x0000000105010000 ruby 2.6.3p62 (2019-04-16 revision 67580) [universal.arm64e-darwin20] -- Crash Report log information -------------------------------------------- See Crash Report log file under the one of following: * ~/Library/Logs/DiagnosticReports * /Library/Logs/DiagnosticReports for more details. Don't forget to include the above Crash Report log file in bug reports. c:0054 p:---- s:0314 e:000313 CFUNC :getdtablesize c:0053 p:0050 s:0310 e:000309 CLASS /Library/Ruby/Gems/2.6.0/gems/ethon-0.15.0/lib/ethon/curls/classes.rb:36・・・・・・・
以下、長い行が続き、
[NOTE] You may have encountered a bug in the Ruby interpreter or extension libraries. Bug reports are welcome. For details: https://www.ruby-lang.org/bugreport.html [IMPORTANT] Don't forget to include the Crash Report log file under DiagnosticReports directory in bug reports. zsh: abort pod install
と、表示されます。
最初にターミナルには
% sudo gem install cocoapods
と入力し、インストールは正常に行われました。
% pod
と入力すると、Podコマンドに関する説明が正常に表示されました。
% pod setup
も Setup complete と表示されました。
その後、指定のフォルダに
% pod init
と入力してPodfileを作成し、
# Uncomment the next line to define a global platform for your project platform :ios, '14.5' target 'test' do # Comment the next line if you don't want to use dynamic frameworks use_frameworks! # Pods for test pod 'RealmSwift','10.11.0' end
と入力し、閉じました。
その後、上記のように
% pod install
と入力したところ、エラーになりました。
別のプロジェクトでも同様の作業をしましたが、同じエラーが出ました。
回答1件
あなたの回答
tips
プレビュー