- 新建Podfile时,在vim环境编辑文本时贪图方便直接拷贝的别的项目的Podfile代码,并在文本编辑器中删减操作会导致pod install的时候出现警告问题
Your Podfile has had smart quotes sanitised. To avoid issues in the future, you should not use TextEdit for editing it. If you are not using TextEdit, you should turn off smart quotes in your editor of choice.
有道直译: 你Podfile
智能引用消毒。为了避免问题在未来,您不应该使用文本编辑进行编辑。如果你不使用文本编辑,你应该关掉智能报价在你的编辑器的选择
意思: 不要使用文本编辑去编辑Podfile,使用Xcode编辑,或者使用终端敲命令去编辑(意思就是文本编辑的时候可能会出现中文的单引号‘把正确的英文单引号'替换掉了)
- 手贱更新mac系统到macOS High Sierra(版本10.13.1)导致cocoapods不能使用了,网上查了很多办法都没用最后只做了两步就解决了(日了🐶了)
网上有说使用 sudo gem install cocoapods 可以解决的,我想说的是这个命令在10.12貌似就不起效果了吧。
至少我这里会报错:ERROR: While executing gem ... (Gem::FilePermissionError)
You don't have write permissions for the /usr/bin directory.
正确姿势:
1、sudo gem update --system
2、sudo gem install -n /usr/local/bin cocoapods
经过2步骤之后会输出一堆东西,然后告诉你完成,这样就可以了。