Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Cocoapods1.3.2 Xcode8 pod install Generating Pods project Abort trap: 6

192:podss etcxm$ pod install --verbose Preparing

Analyzing dependencies

Inspecting targets to integrate Using ARCHS setting to build architectures of target Pods-podss: (``)

Resolving dependencies of Podfile

Comparing resolved specification to the sandbox manifest A FMDB

Downloading dependencies

-> Installing FMDB (2.6.2)

Copying FMDB from /Users/etcxm/Library/Caches/CocoaPods/Pods/Release/FMDB/2.6.2-854a0 to Pods/FMDB - Running pre install hooks Generating Pods project - Creating Pods project - Adding source files to Pods project - Adding frameworks to Pods project - Adding libraries to Pods project - Adding resources to Pods project - Linking headers - Installing targets - Installing target FMDB iOS 4.3 - Installing target Pods-podss iOS 8.0 - Running post install hooks - Writing Xcode project file to Pods/Pods.xcodeproj - Generating deterministic UUIDs Abort trap: 6

I've tried reinstall cocoa pods, but not succeed.

like image 373
yaojy123 Avatar asked Oct 11 '16 02:10

yaojy123


People also ask

How do I remove a pod and install it?

Just rm -rf that pod's folder, and remove the line from the Podfile. Then run pod install again.

What is the difference between POD install and pod update?

Use pod install to install new pods in your project. Even if you already have a Podfile and ran pod install before; so even if you are just adding/removing pods to a project already using CocoaPods. Use pod update [PODNAME] only when you want to update pods to a newer version.


1 Answers

My solution was:

Removing all cocoapods gems:

sudo gem uninstall cocoapods
sudo gem uninstall cocoapods-core
sudo gem uninstall cocoapods-deintegrate
sudo gem uninstall cocoapods-downloader
sudo gem uninstall cocoapods-plugins
sudo gem uninstall cocoapods-search
sudo gem uninstall cocoapods-stats
sudo gem uninstall cocoapods-try
sudo gem uninstall cocoapods-trunk

Then installing latest pre release version:

sudo gem install cocoapods --pre
like image 101
Andrew Avatar answered Oct 19 '22 05:10

Andrew