How to install tikz-uml package on Mac
#!/bin/sh
mkdir -p ~/Library/texmf/tex/latex/tikz-uml/ # It doesn't really matter where to save this file
cp ~/Downloads/tikzuml-v1.0b/tikz-uml.sty ~/Library/texmf/tex/latex/tikz-uml/
texhash ~/Library/texmf/tex/latex/tikz-uml/ # This line is what really matters
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/
cp ~/yourPath/tikz-uml.sty ~/texmf/tex/latex/tikz-uml/
texhash ~/texmf
Thanks !