[Tex/LaTex] How to get the biber script with a custom texlive installation

biberbiblatextlmgr

I installed texlive in my Xubuntu 18.04.4 in ~/texlive/2019/ (updated to texlive 2020) because I thought I would be on the edge for package updates instead of relying on apt.

I installed biblatex with tlmgr install biblatex. I thought this would come bundled with biber… nope (file's not on my system).

I can't simply apt install it because that would pull the entire texlive distribution with it…

So if I follow answers from How to upgrade 'biblatex' properly?, my only solution is to download it from sourceforge?

It's confusing because the experimented people who answered stated in bold "Do not update biblatex or Biber manually"… So my question: what is the recommended way to install biber? Why isn't biber installable with tlmgr?

Best Answer

With TeX live you can (and should) normally install Biber via

tlmgr install biber

Biber binaries are built for the most common operating systems and are then also available in TeX live.

Ideally you would update your system with tlmgr update --self --all after you installed Biber to make sure that biblatex is up to date (so that the biblatex and Biber versions match) and that all of its dependencies and all biblatex styles are updated as well.


In case there was any doubt, biblatex should likewise be installed via

tlmgr install biblatex

in TeX live and not manually.

Related Question