Installation
Last updated
Was this helpful?
Last updated
Was this helpful?
JabRef itself can be either installed using the installer or just running the portable version. You get these files from .
On Windows, the installer automatically downloads the OracleJDK (i.e. Java). You can also install it manually as described here.
- redirects to the preferred place to download JabRef
Download statistics:
Development snapshots:
JabRef 5.x is shipped with a lightweight Java runtime environment that includes only the Java dependencies JabRef uses. There are two major ways of obtaining JabRef for your platform.
To build JabRef from source, you first need to have a working Java Development Kit 13 (JDK 13) and Git installed on your system. After installing the two requirements, you open a terminal window (i.e., a command prompt) and type the following:
In a nutshell, you clone the latest snapshot of JabRef into jabref
directory, change directory to jabref
, initialize and update all the submodules (dependencies) of JabRef, assemble them to be built via JDK 13, and finally build and link them together.
The output should be the build/image
subdirectory that contains the JabRef binary with all of its Java dependencies. To start JabRef, you need to run bin/JabRefMain
(in Linux and MacOS) or bin/JabRefMain.bat
(in Windows) under build/image
subdirectory.
JabRef 4.x requires JRE 8 (and does not run at JRE 9 onwoards)
In case you already have a Java version installed - or you closely followed the steps below, you can check your Java version by typing the following command into your command line interface:
java -version
It is possible having multiple Java versions at the same time. On debian based Linux distributions set your preferred Java version using the following command:
sudo update-alternatives --config java
and choose it by typing the number matching the Java version.
Your Java version should look like this, depending on your operating system and JDK/JRE:
Oracle Java 32-Bit:
Oracle Java 64-Bit:
OpenJDK 32-Bit:
OpenJDK 64-Bit:
If this does not report to be a product from Oracle (for instance tells you that it is a GCJ VM) even if you have installed the Oracle JVM then you need to change your setup. In the following, the installation is documented for Ubuntu, Debian, Fedora, CentOS, Windows, and MacOSX.
This applies for both 32bit and 64bit and both Ubuntu 14.04 LTS, 16.04 LTS, 18.04 LTS and 20.04 LTS.
Install Oracle JDK:
Unpack the archive
Note: You can already start JabRef now. Just enter into terminal: "/home/USER/Downloads/jre-8u251-linux-x64/jre1.8.0_251/bin/java -jar /home/USER/Downloads/JabRef-4.3.1.jar" (The path has to match your folder structure)
Register your JRE system-wide
Move the java folder to your preferred location (e.g. /usr/java). The folder structure should look like "/usr/java/jre1.80_251/bin"
Edit "bashrc" with: sudo gedit ~/.bashrc
Insert the following lines and save the file (adjust JAVA_HOME if neccessary):
export JAVA_HOME=/usr/java/jre1.80_251
export PATH=${PATH}:${JAVA_HOME}/bin
Log out and in to your system
Verify your java version (see above): java -version
Start JabRef with: java -jar Path/to/JabRef.jar
Just install JavaFX by executing sudo apt-get install openjfx
.
If you accidently installed the new version, remove it with sudo apt purge openjfx
.
Install an older version with sudo apt install openjfx=8u161-b12-1ubuntu2 libopenjfx-jni=8u161-b12-1ubuntu2 libopenjfx-java=8u161-b12-1ubuntu2
.
To prevent the software updater from installing the newer not supported version, mark it to be not updated with sudo apt-mark hold openjfx libopenjfx-jni libopenjfx-java
.
This also works for Linux Mint 19.1 Tessa which is based on Ubuntu 18.04.
Using the ppa
Add repository: sudo sh -c 'echo "deb http://ppa.launchpad.net/webupd8team/java/ubuntu trusty main" >> /etc/apt/sources.list'
Add GPG key: sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys EEA14886
Update package list: sudo apt-get update
Install: sudo apt-get install oracle-java8-installer
Directly from Oracle
Navigate to the folder where you downloaded the tar.gz-file
Create package with make-jpkg jdk-[Version]-linux-x64.tar.gz
including the most recent Java version instead of[Version]
Get root access with su
Install with dpkg -i oracle-java8-jdk_[Version].deb
Navigate to the folder where you downloaded the rpm-file
Install: rpm -ivh jdk-8u101-linux-x64.rpm
Upgrade: rpm -Uvh jdk-8u101-linux-x64.rpm
Set alternatives: alternatives --config java
(choose Oracle version)
Install OpenJDK: sudo dnf install java-1.8.0-openjdk
Install JavaFX (actually OpenJFX): sudo dnf install openjfx java-1.8.0-openjdk-openjfx
In the folder of the jar-file run java -jar JabRef-[version].jar
Install with sudo yum localinstall jre-[Version]-linux-[BIT].rpm
include the most recent Java version for [Version]
and i586
or x64
for [BIT]
depending on your OS version
The necessary Java packages can be installed via "1-click installs":
Both packages install precompiled jar files and add a command and a .desktop file to the OS.
The "modern" way:
Execute choco install jre8
At any time, you can update to the latest Java runtime environment by executing choco upgrade all
.
The "old" way:
Run installation wizzard
Run installation wizzard
Random freezes have also been reported on several Linux distributions. It seems that the GTKLookAndFeel
is causing these problems and selecting a different look and feel class under Options -> Appearance -> Look and Feel
solves the problem.
The connection from JabRef to Libre Office requires some office related jar
-archives to be present. The Windows installer for OpenOffice/LibreOffice automatically installs the required libraries. For Linux you have to install the package libreoffice-java-common
.
- contains historical releases only
For stable versions, head to , choose the installer and run it. On Windows, you can use the and execute choco install jabref
to get the latest version. On Ubuntu, you can use snap install jabref
to get the latest stable version .
In case, you want to take advantage of the , you can use pre-built binaries crafted from the latest development branch.
To use the prebuilt binaries, visit and download the packaged binaries (e.g., dmg
files for MacOS and exe
files for Windows), run them and follow the instructions. We also provide generic archive files (e.g., tar.gz
files for Linux and MacOS, and zip
files for Windows) which can be downloaded and extracted. Inside the archive files you will find a bin
subdirectory which contains the binary needed to run JabRef (i.e., JabRefMain
for Linux and MacOS, and JabRefMain.bat
for Windows).
This method is mainly for package maintainers and users who would like to build the latest snapshots of JabRef directly from the source. If you want to setup JabRef for development, follow the instructions for
JavaFX is not included in every Java runtime environment or development kit. Therefore, we highly recommend to use . JavaFX is included since Java 1.8.0_60. The other official support for JavaFX is with the external library . Unfortunately, the installation is not always straight forward. Therefore, we only recommend this if you know what you are doing. In case you want to use OpenJDK with OpenJFX in general you should follow this . For Ubuntu 16.04 LTS, 18.04 LTS and 20.04 LTS head to the section .
Download the Linux files (e.g. Linux_X64) from
Have a look for further .
For Ubuntu 18.04 and newer, openjfx
which is currently not supported by JabRef. Hence, use an older version (does not work with Ubuntu 20.04 anymore):
Based on:
Download tag.gz-file from the site
Download rpm-file from the site
Recent JabRef builds are available at .
Download the JabRef-[version].jar from the .
Warning: To install JavaFX, it is not sufficient to just install the openjfx
package. Warning: There is a in openjfx
in Fedora 29. JabRef versions newer than 4.3.1 will not work with OpenJDK and Fedora 29 until this is fixed. See also .
Download rpm-file from the site
Two packages are available in the :
: The current release
: The latest version from the master branch
Install chocolatey by following the steps described at
Download exe file from the site
Download dmg-file from the site
See the .
Some users with macOS Sierra have reported freezes when using JabRef. Apparently, seems to solve these issues.