yaojy123
yaojy123

Reputation: 81

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.

Upvotes: 7

Views: 4243

Answers (2)

0x384c0
0x384c0

Reputation: 2294

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

Upvotes: 15

MGY
MGY

Reputation: 8523

First uninstall Ruby 2.3.1, and install version 2.2.5, and after that reinstall cocoapods may resolve your issue.

Please try, and let me know if it's fix your problem.

Upvotes: 4

Related Questions