Logo HardwareVisualizer

Download
HardwareVisualizer

Choose an official installer and verify HardwareVisualizer downloads before installing.

Current version: v1.10.1

Released: Aug 23, 2026, 04:45 AM UTC

Read full changelog →

Download

Official download sources

Use only the links on this page, GitHub Releases, or Winget where available.

Malware impersonating HardwareVisualizer has been observed under names such as HardwareVisualizer_1.3.1.zip. Fake download pages, file-sharing links, YouTube description links, and password-protected archives are not official. The installation section below links to Installer verification before running an installer.

Windows

Windows 10/11 (x64)

6.5 MBDownload
Checksum (SHA-256)
1413d340850d92a7b113d0d34a0089767fd60e2a4eabd24eab6fde73f60451be

macOS

Apple Silicon (ARM64)

6.3 MBDownload
Checksum (SHA-256)
fac2dc9aac16d40f1946cdb080b1a9411df1dffcd5053c30e58d79a95efc8c0f

Intel (x64)

6.7 MBDownload
Checksum (SHA-256)
52ed04a2190eb4d447ecd1e7d8a017d3a8ee2bc0cfcb7e8470d246405cf1dd7e

Linux

RPM-based Distros (.rpm)

6.4 MBDownload
Checksum (SHA-256)
f060f70729369eece58b7ba09dc0d2dcafbbdd0dbbb601d9a46a2b907ca986cc

AppImage (.AppImage)

80.3 MBDownload
Checksum (SHA-256)
dd10c4d701dbc760e877e7b700484e12532d3c2057b78235886a08621efd103d

Debian/Ubuntu (.deb)

6.4 MBDownload
Checksum (SHA-256)
3c87e630e222feb8bad76cb0bd05b4ce0ce9b8073e552240960540391353a25b

Installation instructions

Install from the official channel for your operating system. If you are unsure about the source or file name, see Installer verification before running the installer.

Windows

Using the installer

  1. Download HardwareVisualizer_x.x.x_x64_en-US_windows.msi from this page.
  2. Run the downloaded .msi installer file.
  3. Follow the installation wizard.
  4. Launch HardwareVisualizer from the Start Menu or desktop shortcut.

Using Winget

You can also install with Windows Package Manager. Run this command in PowerShell or Command Prompt.

winget install shm11C3.HardwareVisualizer

macOS

  1. Download the Apple Silicon or Intel disk image for your Mac.
  2. Open the DMG and move HardwareVisualizer to Applications.
  3. Use Gatekeeper prompts and the verification guide if macOS asks for confirmation.

Linux

Download the package that matches your distribution. If the available package format does not fit your system, use the AppImage to run HardwareVisualizer without installing it.

Debian / Ubuntu

  1. Download hardware-visualizer_x.x.x_amd64.deb from this page.
  2. Install it with apt or dpkg.
sudo apt install ./hardware-visualizer_*.deb

If you use dpkg, also resolve dependencies afterward.

sudo dpkg -i hardware-visualizer_*.deb
sudo apt-get install -f
  1. Launch from the application menu or terminal.
hardware-visualizer

Fedora / RHEL-based distributions

  1. Download hardware-visualizer_x.x.x_x86_64.rpm from this page.
  2. Install it with dnf.
sudo dnf install ./hardware-visualizer_*.rpm

openSUSE

  1. Download hardware-visualizer_x.x.x_x86_64.rpm from this page.
  2. Install it with zypper.
sudo zypper install ./hardware-visualizer_*.rpm

Arch Linux / Manjaro

An official Arch package is not currently provided. Use the AppImage.

Before running the AppImage, make sure runtime libraries such as WebKitGTK are installed.

sudo pacman -S webkit2gtk gtk3 libayatana-appindicator

Using the AppImage

  1. Download HardwareVisualizer_x.x.x_amd64.AppImage from this page.
  2. Make it executable.
chmod +x ./HardwareVisualizer_*.AppImage
  1. Run the AppImage.
./HardwareVisualizer_*.AppImage

To launch it from anywhere, place it somewhere such as ~/.local/bin.

mkdir -p ~/.local/bin
mv ./HardwareVisualizer_*.AppImage ~/.local/bin/hardware-visualizer
chmod +x ~/.local/bin/hardware-visualizer
hardware-visualizer

If the window is blank on some Arch Linux / Wayland environments

On Wayland, the window may appear blank because of WebKitGTK / EGL compatibility issues. In that case, preload libwayland-client.so when starting HardwareVisualizer.

If you placed it in ~/.local/bin:

LD_PRELOAD=/usr/lib/libwayland-client.so ~/.local/bin/hardware-visualizer

If you run the AppImage directly:

LD_PRELOAD=/usr/lib/libwayland-client.so ./HardwareVisualizer_*.AppImage