> For the complete documentation index, see [llms.txt](https://wiki.smhuda.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://wiki.smhuda.com/pentesting/application-security/mobile-security/ios/installing-ipa.md).

# Installing IPA

## Install `ipa` using command line

* using `ideviceinstaller` which can be installed using `brew install ideviceinstaller`

```
# list installed app on the connected device
# it also lists the identifier of the installed packages
ideviceinstaller -l

# install ipa
ideviceinstaller -i <your-package.ipa>

# uninstall app
ideviceinstaller -U <your-app-id>
```

### IPA Tool to Pull Universal IPA and then install it:

```
ipatool auth
ipatool purchase -b com.yourpackage.co
ipatool download -b com.yourpackage.co
```
