# Installing slide ## Install dependencies This project depends on the following dynamically linked libraries: * qt5 * libexif * qt5-image-formats-plugins * libmosquitto1 ### OSX ``` brew install qt libexif ``` ### Debian / Ubuntu / Raspberry Pi OS (runtime dependencies) ``` sudo apt-get install -y qt5-image-formats-plugins libmosquitto1 ``` ### Raspberry Pi Zero / Raspbian (additional image format support) ``` sudo apt-get install -y qt5-image-formats-plugins libmosquitto1 libmng1 ``` ## Install .deb package Use apt so dependencies are resolved automatically: ``` sudo apt-get install ./slide__.deb ``` If you must use dpkg, install runtime dependencies first: ``` sudo apt-get install -y qt5-image-formats-plugins libmosquitto1 sudo dpkg -i slide__.deb ```