I'm on Ubuntu 20.04, and I needed some more updated latex packages, so I manually installed texlive 2023 (after uninstalling the apt-get version, at least so I thought). I correctly set that up in TexStudio (I set under build, as Commands path /usr/local/texlive/2023/bin/x86_64-linux/).
Unfortunately, now biblatex and biber are incompatible:
ERROR - Error: Found biblatex control file version 3.10, expected version 3.7. This means that your biber (2.14) and biblatex (3.19) versions are incompatible.
However, in the command line, I seem to have a different version of biber:
(base) $ which biber
/usr/local/texlive/2023/bin/x86_64-linux/biber
(base) $ biber -v
biber version: 2.19
Is Texstudio running the wrong biber executable? The command for biber is biber %
/usr/local/texlive/2023/bin/x86_64-linux/biber %– samcarter_is_at_topanswers.xyz Jul 30 '23 at 13:06biberin Ubuntu 20.04. So maybe that package was missed when you uninstalled TeX Live (for which most packages are calledtexlive-...). If you still had the Biber binary left over and TeXstudio was configured to give its path preference this might explain it ended up running the wrong binary. It's probably a good idea to tellaptto remove thebiberpackage as well. – moewe Jul 31 '23 at 17:27