Skip to content

offlineinstallersetup/macos-offline-installers

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 

Repository files navigation

macOS Offline Installers

A reference of macOS apps that publish proper offline installers — full DMG / PKG packages downloadable from the official vendor for offline / air-gapped Mac deployment.

Maintained by OfflineInstallerSetup.com — verified offline installer links from official sources.

Website macOS Apple Silicon


Why offline installers on macOS?

Many macOS apps default to App Store distribution or stub downloaders. For:

  • 🏢 Mac fleet management (Jamf, Mosyle, Kandji)
  • 🔒 Air-gapped / restricted Macs
  • 🐢 Slow or metered internet
  • 📦 Pinned-version installs for consistency
  • 🛠️ Offline software repos for IT teams

…you need the full standalone DMG or PKG. This list catalogs apps that provide them.


Browsers (DMG)

App Architecture Source
Mozilla Firefox Universal mozilla.org/firefox/all
Google Chrome Intel / Apple Silicon google.com/chrome
Microsoft Edge Universal PKG microsoft.com/edge/business
Brave Browser Universal brave.com/download
Opera Intel / Apple Silicon opera.com
Vivaldi Universal vivaldi.com/download

→ More at offlineinstallersetup.com


Media & Office (DMG / PKG)

App Type Notes
VLC Media Player DMG Universal binary
LibreOffice DMG Apple Silicon native
OnlyOffice Desktop DMG Standalone build
Thunderbird DMG Universal
Audacity DMG Universal
HandBrake DMG Universal
GIMP DMG macOS native

Developer Tools

App Format Architecture
Visual Studio Code Universal DMG Universal
JetBrains IDEs DMG (per-IDE) Apple Silicon native
Sublime Text DMG Universal
Git macOS PKG Intel / Apple Silicon
Node.js PKG Universal
Python PKG Universal
Docker Desktop DMG Apple Silicon / Intel

Communication & Productivity

App Format
Zoom PKG
Microsoft Teams PKG
Slack DMG
Telegram Desktop DMG
Signal Desktop DMG
Discord DMG
Notion DMG
Obsidian Universal DMG

Graphics & Design

  • GIMP — Universal DMG
  • Inkscape — Apple Silicon DMG
  • Krita — DMG
  • Blender — DMG (universal)
  • Pixelmator Pro — DMG / App Store
  • Figma — DMG

Utility & Maintenance

  • The Unarchiver — DMG
  • Rectangle (window manager) — DMG
  • AppCleaner — DMG
  • Stats (system monitor) — DMG
  • Karabiner-Elements — DMG / PKG
  • iTerm2 — ZIP

Silent Install on macOS (PKG)

For unattended deployment via Jamf, Mosyle, or shell scripts:

# Install a PKG silently (requires sudo / admin)
sudo installer -pkg /path/to/installer.pkg -target /

# Mount a DMG, copy app, unmount
hdiutil attach /path/to/installer.dmg -nobrowse -quiet
cp -R "/Volumes/AppName/AppName.app" /Applications/
hdiutil detach "/Volumes/AppName" -quiet

For a full reference: offlineinstallersetup.com/resources/silent-install-reference


Verifying installer signatures

Before installing on offline Macs, verify the installer is properly signed and notarized:

# Verify a PKG signature
pkgutil --check-signature /path/to/installer.pkg

# Verify a DMG-extracted app
codesign -dv --verbose=4 /Applications/AppName.app
spctl -a -vv /Applications/AppName.app

Guide: How to verify installer safety


Resources


Contributing

Spotted an app with an offline DMG/PKG that's missing here? Open a PR or get in touch via offlineinstallersetup.com/contact.

License

CC0 — Public domain.


🌐 Maintained by OfflineInstallerSetup.com

About

macOS offline installers — DMG and PKG packages from official sources for offline / air-gapped Macs and IT-managed fleets. From offlineinstallersetup.com

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors