I test texliveonfly using the tikzpagenodes package.
%fly.tex
\documentclass{standalone}
\usepackage{tikz,tikzpagenodes}
\begin{document}
\begin{tikzpicture}[remember picture,overlay]
\draw[blue] (current page text area.south west)
rectangle
(current page text area.north east)
\end{tikzpicture}
\end{document}
I typed
sudo python texliveonfly.py --texlive_bin=/usr/local/texlive/2011/texmf-dist/ fly.tex
But error message:
/usr/local/texlive/2011/texmf-dist/tlmgr is not installed
What do I do? In short, as its use texliveonfly in /usr/local/texlive/2011/
texliveonlfy.plso I can only guess. You have to provide the full path to the tlmgr (without tlmgr itself). So it is more likesudo python texliveonfly.py --texlive_bin=/usr/local/texlive/2011/texmf-dist/bin/linux/ fly.tex. To find out the correct dir, typetype -p tlmgron the command line. – dıʞsdoʇ Oct 9 '11 at 6:43texliveonflylooks fortlmgrin the path given to--texlive_bin. That's all. Have you tried what I have written? What exactly do you want to know? – dıʞsdoʇ Oct 11 '11 at 4:41