SwiftUIの基本を身につけたい方はこちら

【CocoaPods】pod installでエラー:[!] Invalid `Podfile` file: unterminated string meets end of file {file}: syntax error, unexpected end-of-input, expecting end.

エラー内容

[!] Invalid `Podfile` file: unterminated string meets end of file
/Users/rikutosato/Documents/10_AppDev/Practice/GoogleAPITest/Podfile:11: syntax error, unexpected end-of-input, expecting end.

原因

Podfileの書き方がよくないよと言われています。

確認してみると、

あ、本当だ。""で閉じられていました。。

解決方法

解決方法は、今回の場合であれば、ダブルクォーテーションのところをシングルクォーテーションに直すだけです。

エラー分にPodfile: 11とか何行目がおかしいとか書いてくれているので、その行をしっかりと見直して確認してみてください。

というか、超親切にその場所が表示されていましたね。

評価