본문 바로가기
1 - iOS

[iOS/Swift] Xcode CocoaPods Install 코코아팟 설치 방법

by seonshine-bibi 2022. 4. 17.
반응형

CocoaPods 를 사용하는 방법

 

 

 

터미널에서 cocoapods 를 설치해준다.

 

sudo gem install cocoapods

 

 

 

터미널에서 코코아팟을 사용하려는 프로젝트 폴더에 들어가서 pod init을 해준다.

pod init

 

 

 

Podfile 을 수정하기 위해 vi로 파일을 열어준다.

vi Podfile

 

 

https://github.com/Alamofire/Alamofire

 

GitHub - Alamofire/Alamofire: Elegant HTTP Networking in Swift

Elegant HTTP Networking in Swift. Contribute to Alamofire/Alamofire development by creating an account on GitHub.

github.com

 

 

예를 들어 Alamofire를 사용하려면, 아래와 같이 넣어준다.

 

pod 'Alamofire', '~> 5.5'

 

 

 

Podfile을 저장하고 나와서, 터미널에 팟 설치 명령어를 입력해준다.

pod install

 

 

 

pod install 이후에는 .xcworkspace 로 들어가서 작업해야 한다.

 

 

 

 

Podfile을 업데이트 했을 경우에는 아래 명령어를 써주면 된다.

 

pod install --repo-update

 

 

반응형