CocoaPods not working

I installed CocoaPods on a new machine.

My podfile looks like this:

platform :ios, '6.0'
pod 'MBProgressHUD', '~> 0.8'

But when I launched pod install

Unable to find a specification for `MBProgressHUD (= 0.8)`.

I tried reinstalling CocoaPods but did not help.

+4
source share
1 answer

Try the following:

xcode-select --switch /applications/Xcode.app  
pod setup
pod install

Cocoapods - Unable to find specification for [Github framework]

0
source

Source: https://habr.com/ru/post/1536140/


All Articles