Clone
1
downloads
ispyisail edited this page 2026-09-09 15:27:48 +12:00

Downloads & Installation

Get QElectroTech running on your system. Choose your platform below for specific instructions.



System Requirements

Minimum Requirements

  • RAM: 512 MB (1 GB recommended)
  • Disk Space: 100 MB free
  • Internet: Required for first download, optional for offline use

Supported Operating Systems

  • Windows: Windows 7 or later (32-bit or 64-bit)
  • macOS: macOS 10.12 or later
  • Linux: Ubuntu 18.04+, Fedora 25+, Debian, Arch, and other distributions

Windows

Easiest way to get started.

  1. Download the Windows installer from qelectrotech.org/downloads

    • Look for: qelectrotech-0.100-setup.exe or similar
  2. Run the installer:

    • Double-click the .exe file
    • Click "Next" through the setup wizard
    • Choose installation location (default is fine)
    • Click "Install"
  3. Launch QElectroTech:

    • After installation, "Launch QET" checkbox appears → click it
    • Or find in Start Menu → search "QElectroTech"
    • Or double-click desktop shortcut (if created)

First Run:

  • Application launches with welcome screen
  • File → New Project to start
  • See Quick Start Guide for first diagram

Option 2: Portable Version

No installation required; run from USB or folder.

  1. Download the portable ZIP from downloads page
  2. Extract the ZIP file to a folder
  3. Run QElectroTech.exe directly from the folder
  4. No registry changes; safe to run from USB

Option 3: Microsoft Store

If available in your region.

  1. Open Microsoft Store
  2. Search for "QElectroTech"
  3. Click "Install"
  4. Launch from Start Menu or App Grid

macOS

Standard macOS installation method.

  1. Download the macOS package from qelectrotech.org/downloads

    • Look for: qelectrotech-0.100.dmg or similar
  2. Mount the DMG:

    • Double-click the .dmg file
    • A window opens showing the application
  3. Install:

    • Drag QElectroTech icon to the Applications folder
    • (Or double-click to run directly from DMG)
  4. Launch:

    • Open Applications folder
    • Double-click QElectroTech
    • (May ask to confirm first launch; click "Open")
  5. Easier access:

    • Drag QElectroTech from Applications to Dock for quick access
    • Or use Launchpad to launch

First Run:

  • Application launches with welcome screen
  • File → New Project to start

Option 2: Homebrew

If you have Homebrew installed.

brew install qelectrotech
qelectrotech

Option 3: AppImage

Portable version; no installation needed.

  1. Download .AppImage file from downloads page
  2. Make executable:
    chmod +x QElectroTech-*.AppImage
    
  3. Run:
    ./QElectroTech-*.AppImage
    

Linux

Option 1: Package Manager (Easiest)

Ubuntu/Debian:

sudo apt update
sudo apt install qelectrotech
qelectrotech

Fedora/RHEL:

sudo dnf install qelectrotech
qelectrotech

Arch Linux:

sudo pacman -S qelectrotech
qelectrotech

Other distributions:

  • Search your package manager for "qelectrotech"
  • Or use Flatpak/Snap (below)

Option 2: Flatpak

Universal Linux package; works on most distributions.

  1. Install Flatpak (if not already installed):

    # Ubuntu/Debian
    sudo apt install flatpak
    
    # Fedora
    sudo dnf install flatpak
    
  2. Install QElectroTech:

    flatpak install org.qelectrotech.QElectroTech
    
  3. Run:

    flatpak run org.qelectrotech.QElectroTech
    

    Or launch from your applications menu

Option 3: Snap

If you have Snap installed:

sudo snap install qelectrotech
qelectrotech

Option 4: AppImage

No installation required; portable executable.

  1. Download .AppImage from qelectrotech.org/downloads

  2. Make executable:

    chmod +x QElectroTech-*.AppImage
    
  3. Run:

    ./QElectroTech-*.AppImage
    

    Or double-click in file manager

Option 5: Build from Source

For developers or if no packages available:

See Building QET for detailed compile instructions.


First Run: Getting Started

After Installation

  1. Launch QElectroTech

    • Windows: Start Menu → QElectroTech
    • macOS: Applications → QElectroTech
    • Linux: Applications menu or qelectrotech command
  2. First screen appears:

    • Welcome dialog or blank window
    • Ready to create your first project
  3. Create your first project:

    • File → New Project
    • Choose page size (A4 is fine)
    • Click OK
    • Blank diagram appears
  4. Start drawing:

    • Elements panel on right: search for "switch"
    • Drag element onto canvas
    • Add more elements
    • Draw wires to connect them
    • Double-click to add labels
  5. Save your work:

    • File → Save (Ctrl+S)
    • Choose location and filename
    • Saves as .qet format

Next Steps


Troubleshooting

"Application won't start"

Windows:

  • Try running as Administrator
  • Ensure .NET Framework is installed
  • Check Windows Updates

macOS:

  • Confirm "Open" when first launching
  • Check that app downloaded fully
  • Try emptying Trash and reinstalling

Linux:

  • Ensure all dependencies installed: sudo apt install libqt5gui5 libqt5svg5
  • Try: qelectrotech --version to verify installation
  • Check file permissions

"Missing dependencies"

Ubuntu/Debian:

sudo apt install libqt5gui5 libqt5svg5 qt5-image-formats-plugins

Fedora:

sudo dnf install qt5-qtbase qt5-qtsvg

"Slow or laggy"

  • Ensure 1GB+ RAM available
  • Close other applications
  • Disable visual effects if needed
  • Update your graphics drivers

"Can't save files"

  • Ensure write permissions on folder
  • Try saving to Documents folder
  • Check disk space available

Still having issues?


Keeping QElectroTech Updated

Check for Updates

Windows/macOS:

  • Help → Check for Updates (if available)
  • Or download latest from website

Linux:

  • Package manager handles updates automatically
  • Or: sudo apt upgrade qelectrotech

Update to Latest

Windows:

  • Download latest installer and run it

macOS:

  • Download latest DMG and replace application

Linux (apt):

sudo apt update
sudo apt upgrade qelectrotech

Flatpak:

flatpak update org.qelectrotech.QElectroTech

Snap:

sudo snap refresh qelectrotech

Portable vs. Installed

When to Use Portable

  • Running from USB drive
  • No admin rights on computer
  • Temporary installation
  • Trying before full install
  • Multiple versions

When to Use Installer

  • Permanent installation
  • Want Start Menu shortcuts
  • Integration with system
  • Easier updates
  • Normal usage

Uninstalling QElectroTech

Windows

  • Control PanelProgramsUninstall a Program
  • Find QElectroTech → Click Uninstall
  • Follow prompts

macOS

  • Open Applications folder
  • Drag QElectroTech to Trash
  • Empty Trash
  • Optional: Remove preferences:
    rm -rf ~/.config/qelectrotech
    

Linux (apt)

sudo apt remove qelectrotech
sudo apt autoremove  # Optional: remove dependencies

Flatpak

flatpak uninstall org.qelectrotech.QElectroTech

Snap

sudo snap remove qelectrotech

Need Help?


Download Now

Ready to get started?

Download QElectroTech

Or choose your platform above for detailed instructions!