Simple Steps To Install Carthage On Mac
Name: carthageUse: A simple, decentralized dependency manager for Cocoa
URL: https://github.com/Carthage/Carthage
Carthage is used to add frameworks to your Cocoa application. The basic workflow is as follows:
- Create a Cartfile that lists the frameworks you’d like to use in your project.
- Run Carthage, which fetches and builds each framework you’ve listed.
- Drag the built .framework binaries into your application’s Xcode project.
Follow the steps below to installation Carthage:
- Open Terminal using Spotlight search by pressing <command+space>. Type terminal and hit Enter key
- Now execute following command to install homebrew
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" < /dev/null 2> /dev/null
- Install carthage using brew
brew install carthage
carthage is ready to use now!
0 comments:
Post a Comment