vscode 导入一些三方库时 ios 运行时 一直出 CocoaPods的错

WARNING: CocoaPods requires your terminal to beusingUTF-8encoding. Consider adding the following to ~/.profile:exportLANG=en_US.UTF-8

解决办法

终端打开~/.bash_profile (open ~/.bash_profile)

编辑并添加 export LANG=en_US.UTF-8

退出并保存

还可以运行该echo $LANG命令以查看变量是否已正确配置。

然后执行 pod install  重启vscode

你可能感兴趣的:(vscode 导入一些三方库时 ios 运行时 一直出 CocoaPods的错)