The Deep Java Library (DJL) project requires JDK 11 (or later).
Verify that Java is available in your $PATH environment variable by using the following commands. If you have multiple versions of Java installed, you can use the $JAVA_HOME environment variable to control which version of Java to use.
For ubuntu:
sudo apt-get install openjdk-17-jdk
For centos
sudo yum install java-17-openjdk
For Mac:
brew install --cask zulu@17
You can also download and install Oracle JDK manually if you have trouble with the previous commands.
You can use the IDE of your choice. We recommend using IntelliJ.
- Open IntelliJ and click
Import Project
. - Navigate to the DJL project root folder and choose
Open
. - Choose
Import project from existing model
and selectGradle
. - Select the default configuration and choose
OK
.
You use Gradle and Maven wrappers to build the project, so you don't need to install Gradle or Maven. However, you should have basic knowledge about the Gradle or Maven build system.
DLJ defaults to the MXNet Engine which is not supported on M1 Macs. To get your code to run on a mac use either:
- The environment variable
DJL_DEFAULT_ENGINE=PyTorch
which you can export on the command line or set in the Edit Run Configuration in Intellij. - The runtime commandline parameter
-Dai.djl.default_engine=PyTorch
which you can add to the end of the command line when running or add in the Edit Run Configuration in Intellij.