[!] Oh no, an error occurred. It appears to have originated from your Podfile at line1.
Search for existing github issues similar to yours: https://github.com/CocoaPods/CocoaPods/search?q=%2FUsers%2Fhuaqiao%2FDesktop%2FUserCommand1%2FPodfile%3A1%3A+syntax+error%2C+unexpected+%27%3A%27%2C+expecting+end-of-input%0Aplatform+%3A+ios+%0A++++++++++%5E&type=Issues
If none exists, create a ticket, with the template displayed above, on: https://github.com/CocoaPods/CocoaPods/issues/new
Be sure tofirstread the contributing guide for details on how to properly submit a ticket: https://github.com/CocoaPods/CocoaPods/blob/master/CONTRIBUTING.md
看到第一句是不是很有喜感,解决方案: You need reinstall cocoapods: so
1 2 3
sudo gem uninstall cocoapods sudo gem install cocoapods pod setup
坑二:
1 2
Invalid `Podfile` file: [!] Unsupported options `{:exclusive=>true}` for target 'CocoaPodsDemo'
这种一般是pod install别人的工程,解决办法是将:
1 2
target 'mySuperApp_Tests', :exclusive =>truedo pod 'mySuperApp', :path =>'../'end
改成:
1
target 'mySuperApp_Tests'do pod 'mySuperApp', :path =>'../' end
坑三:
1 2
[!] Unable toaddasource with url `https://github.com/CocoaPods/Specs.git` named `master`.
解决办法:
1 2
cd ~/.cocoapods/repos git clone https://github.com/CocoaPods/Specs.git master
还有一种报错是:
1 2
[!] Unable to add a source with url `https://github.com/CocoaPods/Specs.git` named `master-1`. You can try adding it manually in `~/.cocoapods/repos` or via `pod repo add`.
sudo gem sources -a https://ruby.taobao.org/ Error fetching https://ruby.taobao.org/: server did not return a valid file (http://ruby.taobao.org/specs.4.8.gz)