Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Carthage error: No available version for binary

When specifying a new version of a binary in a Cartfile. Carthage is unable to download/find a new version returning an error.

eg:

binary "<URL>" == 1.1.0 (was previously binary "<URL>" == 1.0.0)

error:

No available version for binary "<URL>" satisfies the requirement: == 1.1.0

like image 688
AJ9 Avatar asked Sep 11 '26 12:09

AJ9


1 Answers

This can be resolved by removing the cache for Carthage in the following places:

rm -rf ~/Library/Caches/org.carthage.CarthageKit/

rm -rf ~/Library/Caches/carthage/

like image 170
AJ9 Avatar answered Sep 13 '26 04:09

AJ9