Logo HardwareVisualizer

Download
HardwareVisualizer

Choose an official installer and verify HardwareVisualizer downloads before installing.

Current version: v1.8.1

Released: May 9, 2026, 09:11 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.2 MBDownload
Checksum (SHA-256)
afe11244e96c0e3fa8d60b1c58a587aa5cb063eac18a2d075d498842836798e5

macOS

Apple Silicon (ARM64)

6.1 MBDownload
Checksum (SHA-256)
511d255c2f0f0b296bf59a51f5029cf3dfbdb5629fd7ad3415bece31294611d8

Intel (x64)

6.4 MBDownload
Checksum (SHA-256)
753d915d23d8c532532e02ea69afb7944aa2a2155daf8d237eeab8ab2a0fbaaf

Linux

RPM-based Distros (.rpm)

6.2 MBDownload
Checksum (SHA-256)
fbe166c020fc2cf8be9d705cc5551a9b0c1b5254a11aa1d966844371b22b3de1

AppImage (.AppImage)

80.1 MBDownload
Checksum (SHA-256)
8ae45333c10480c2076f4f5164186bf8b76c0977b87095d160e360b0fba9e9fb

Debian/Ubuntu (.deb)

6.2 MBDownload
Checksum (SHA-256)
ccd14f35bbf3edd1a7d05ef00b7bc2f82b1f5f0d5c765506e07e39091edb2e4b

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