How to install tikz-uml package on Windows
- console: https://tex.stackexchange.com/questions/69483/create-a-local-texmf-tree-in-miktex
- or gui: https://miktex.org/howto/miktex-console
How to install tikz-uml package on Linux
#!/bin/sh
mkdir -p ~/texmf/tex/latex/tikz-uml/
cd ~/texmf/tex/latex/tikz-uml/
# check for new version: https://perso.ensta-paris.fr/~kielbasi/tikzuml/index.php?lang=en&id=download
curl 'https://perso.ensta-paris.fr/~kielbasi/tikzuml/var/files/src/tikzuml-v1.0-2016-03-29.tbz' | tar -jxvf - --strip-components 1
rm -rdf doc examples
cd -
texhash ~/texmf