I am working on TeXworks with MikTeX 2.9 and I need to install Biber.
I downloaded the last version (2.6), saved the .exe file in the document file folder, then I opend TeXworks -> Edit -> Preferences -> Typesettings, in 'Processing tools' I added the voice with Name 'Biber', I browsed with Program to find the biber .exe file and I added the argument '$basename'.
Nonetheless, when I compile the document in 'Biber', it crashed immediately (Console output: 'Process crashed').
What did I do wrong?
Asked
Active
Viewed 1,833 times
1
Schweinebacke
- 26,336
Eggman
- 15
2 Answers
1
Okay your problem does not seem to be a problem of biber, but of your general setup. If you are using MikTeX, you should definitely do the following steps:
Update your distribution (use the MikTeX Update tool as admin).
Open your package manager and install (the most recent)
miktex-biber-bin(just click the "Install" field in the context menu or the plus button).Set up your editor to use that binary (it is in the
$PATHby default, so just addbiber.exeand$basename).
TeXnician
- 33,589
-
Did it, thank you very much! Now when I compile in Biber it gives me the error: 'Warning: Found biblatex control file version 3.0, expected version 2.9', but I will solve it on monday... Thanks again – Eggman Feb 24 '17 at 15:43
-
@Eggman Try to remove
.aux-files etc. Probably that's just an ignorable warning. – TeXnician Feb 24 '17 at 15:44 -
@Eggman The version warning should not be ignored, it can lead to serious problems, that's why it has been 'upgraded' to a critical error in newer versions of Biber. The problem can occur after you have updated
biblatexor Biber, but then it should go away after deleting the temporary files (.bcf,.bbl,.aux). If it does not go away, you need to check your versions ofbiblatexand Biber and update to compatible versions. If you have installed both via MikTeX's 'Package Manager', that is as easy as running the Update tool (in User and Admin mode). – moewe Feb 24 '17 at 16:50 -
Solved, thank you again. Just had to update all the packages, it has been some time since I've used LateX... – Eggman Feb 27 '17 at 08:55
0
I had similar mystery crash (exit code 2), it solved by emptying the cache:
rm -rf `biber --cache`
Vesa Linja-aho
- 300



biberon a MikTeX machine is to use the version from its repositories (miktex-biber-bin). That works just fine (at least for me). – TeXnician Feb 24 '17 at 15:21biberfrom the repository as TeXnician said. This prevents you from downloading the wrong binary as you have done. BTW: After installingbiberyou should updatebiblatexin "MiKTeX Updates (Admin)" and "MiKTeX Updates". – Schweinebacke Feb 24 '17 at 15:29biblatexand Biber match. – moewe Feb 24 '17 at 16:52