Download Offline Doctor

Choose your platform below to download the latest version of Offline Doctor.

Latest Release: v1.0.0

Windows

macOS

Linux

System Requirements

Windows

macOS

Linux

Installation Instructions

Windows

  1. Download the installer
  2. Run the .exe file
  3. Follow the installation wizard
  4. Launch from Start Menu

macOS

  1. Download the .dmg file
  2. Open the disk image
  3. Drag to Applications folder
  4. Launch from Applications

Linux

AppImage

  1. Download the .AppImage file
  2. Make it executable: chmod +x Offline.Doctor.AppImage
  3. Double-click to run or use terminal

Debian/Ubuntu

  1. Download the .deb file
  2. Install using:
    sudo dpkg -i offlinedoctor_1.0.0_amd64.deb
    sudo apt-get install -f
    

Verifying Downloads

All releases are signed and can be verified using GPG:

gpg --verify Offline.Doctor.AppImage.sig Offline.Doctor.AppImage

Download the public key for verification.

Source Code

Get the source code from our GitHub repository:

git clone https://github.com/lpolish/offlinedoctor.git

Building from Source

You can build Offline Doctor from source for your platform:

  1. Clone the repository:
    git clone https://github.com/lpolish/offlinedoctor.git
    cd offlinedoctor
    
  2. Install dependencies:
    npm install
    
  3. Build for your platform:
    # Build for current platform
    npm run build
    
    # Or build for specific platform
    npm run build-win    # Windows (.exe, .msi)
    npm run build-mac    # macOS (.dmg, .pkg)
    npm run build-linux  # Linux (.AppImage, .deb, .tar.gz)
    

The installers will be available in the dist directory.

Continuous Integration

All releases are automatically built using GitHub Actions:

Every release is:

View on GitHub Getting Started