Programster's Blog

Tutorials focusing on Linux, programming, and open-source

Ubuntu - Install Draw.io Snap

Deb Installation

After having issues with the snap installation method (below), with getting the application to open after it had been closed once, I ended up installing it from a deb like so:

cd /tmp \
  &&  wget -O drawio.deb https://github.com/jgraph/drawio-desktop/releases/download/v20.8.16/drawio-amd64-20.8.16.deb \
  && sudo dpkg -i drawio.deb \
  && sudo rm drawio.deb

Be sure to check the releases page for the latest version.

Snap Installation

sudo snap install drawio

Uninstall

sudo snap remove drawio

References

Last updated: 28th March 2024
First published: 3rd February 2020