> For the complete documentation index, see [llms.txt](https://ios-course.cornellappdev.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://ios-course.cornellappdev.com/resources/archived-past-semesters/sp23/chapters/9.-cocoapods/lecture-handout.md).

# Lecture Handout

### TODO in terminal:

```java
//can do this anywhere in your terminal; if it doesn't work, 
//try executing "sudo gem install cocoapods" in your terminal instead.
gem install cocoapods

//run pod init in the same directory as your project.
pod init

//run pod install after you've finished changing your .podfile to add
//any libraries you wish.
pod install

```
