# Install Apps SDK The Apps SDK provides the compiler (`qaic-compile`) and development libraries needed to compile models into QPC (Qualcomm Program Container) artifacts. It can be installed on any Linux host, including systems without Cloud AI hardware. Note This page is for ML engineers and MLOps specialists setting up development environments, offline compilation hosts, or container images for model deployment. Infrastructure engineers only need this page if they’re also responsible for the model compilation or deployment workflow. ## Preparation 1. Copy the Apps SDK zip file to your host computer. 2. Extract the archive: unzip aic_apps.Core..Linux-AnyCPU.zip Copy to clipboard 3. Go to the correct directory: cd / Copy to clipboard ## Uninstall previous version If upgrading from a previous installation: sudo ./uninstall.sh Copy to clipboard ## Installation sudo ./install.sh Copy to clipboard ## Installation with qaic-pytools qaic-pytools is an optional Python package included with the Apps SDK that provides additional model preparation and accuracy analysis tools. Install it when you need to prepare models for compilation or evaluate model accuracy on Cloud AI hardware. Note If the Apps SDK is already installed without qaic-pytools, uninstall it first before proceeding: sudo ./uninstall.sh Copy to clipboard To include qaic-pytools (requires Python 3.10), install build dependencies first: *Debian/Ubuntu:* sudo apt install build-essential cmake python3.10-dev python3-dev -y Copy to clipboard *RHEL/Fedora:* sudo dnf groupinstall "Development Tools" -y sudo dnf install cmake python3.10-devel python3-devel -y Copy to clipboard Then install with pytools enabled: sudo ./install.sh --enable-qaic-pytools Copy to clipboard ## Post-installation **Verify installation directory** The SDK installs to `/opt/qti-aic/`: /opt/qti-aic/ ├── dev/ ├── exec/ ├── integrations/ └── scripts/ Copy to clipboard **Check SDK version** cat /opt/qti-aic/versions/apps.xml Copy to clipboard **Set executable permissions** sudo chmod a+x /opt/qti-aic/dev/hexagon_tools-*/bin/* sudo chmod a+x /opt/qti-aic/exec/* Copy to clipboard Continue to [Verification](https://docs.qualcomm.com/doc/80-99100-3/topic/verification.html#reference-to-verification). Last Published: Aug 25, 2026 [Previous Topic Install Platform SDK](https://docs.qualcomm.com/bundle/publicresource/80-99100-3/topics/platform-sdk.md) [Next Topic Verification](https://docs.qualcomm.com/bundle/publicresource/80-99100-3/topics/verification.md)