Previous tex files used bibtex as a backup. I wanted to update this to biber to use a certain cite-style (apa). I have checked the download/updated on Tex Live Utility and changed the settings for commands etc in TexMaker. But when I try to run the file I get the following error message:
Error : could not start the command : "biber.exe" "abc"
MWE:
\documentclass[11pt]{article}
\usepackage[backend=biber,citestyle=apa,bibstyle=apa]{biblatex}
\bibliography{xyz}
\usepackage{endnotes}
\let\footnote=\endnote
\begin{document}
text text text... \cite{citekey}
\theendnotes
{\singlespacing\printbibliography}
\end{document}
I have tried various strategies recommended in other posts---checking downloads, settings for compiler etc---to no avail.
Update: running biber as a standalone command works normally. The problem arises when running the LaTex/biber/LaTex cycle.
biber --versionin the command line? (Some more first-aid hints: https://tex.stackexchange.com/q/286706/35864) – moewe Dec 18 '20 at 20:11mydoc.texnavigate to the directory in the command line, then runpdflatex mydoc,biber mydoc,pdflatex mydoc,pdflatex mydoc)? Double check your editor settings with https://tex.stackexchange.com/q/154751/35864. The message your are getting either comes from your OS or your editor. It does not appear to be from Biber or a TeX-related component. – moewe Dec 18 '20 at 20:22cdin the command line) and you need to use the name of your main.texfile. Sopdflatex mydoconly works if your document is indeed calledmydoc.tex. – moewe Dec 18 '20 at 20:36cdin the command line. It does not seem to generate any output, just a new line. I have renamed the filemydoc.texfor simplicity, so I don't think that is the issue. – Marmitrob Dec 18 '20 at 20:49cdfollowed by the a folder path. (I don't know your operating system, so I can't link to any more specific guide. But if you search for your OS and "terminal" on the web you should find many helpful guides telling you about basic terminal usage,cd, etc.) – moewe Dec 18 '20 at 20:50