Download and install#
Corese-library#
Download from maven-central
<dependency>
<groupId>fr.inria.corese</groupId>
<artifactId>corese-core</artifactId>
<version>4.5.0</version>
</dependency>
<!-- jena storage -->
<dependency>
<groupId>fr.inria.corese</groupId>
<artifactId>corese-jena</artifactId>
<version>4.5.0</version>
</dependency>
<!-- rdf4j storage -->
<dependency>
<groupId>fr.inria.corese</groupId>
<artifactId>corese-rdf4j</artifactId>
<version>4.5.0</version>
</dependency>
Documentation: Getting Started With Corese-library
Corese-server#
Download from Docker-hub
docker run --name my-corese \
-p 8080:8080 \
-d wimmics/corese
Alternatively, download Corese-server jar file.
wget "https://github.com/Wimmics/corese/releases/download/release-4.5.0/corese-server-4.5.0.jar"
java -jar "-Dfile.encoding=UTF8" "corese-server-4.5.0.jar"
Documentation:
Corese-GUI#
Download on Flathub
Or download Corese-gui jar file.
wget "https://github.com/Wimmics/corese/releases/download/release-4.5.0/corese-gui-4.5.0.jar"
java -jar "-Dfile.encoding=UTF8" "corese-gui-4.5.0.jar"
Corese-Command#
Download on Flathub
Or download Corese-command jar file.
wget "https://github.com/Wimmics/corese/releases/download/release-4.5.0/corese-command-4.5.0.jar"
java -jar "-Dfile.encoding=UTF8" "corese-command-4.5.0.jar"
Alternatively, use the installation script for Linux and MacOS systems.
curl -sSL https://files.inria.fr/corese/distrib/script/install-corese-command.sh | bash
To uninstall:
curl -sSL https://files.inria.fr/corese/distrib/script/uninstall-corese-command.sh | bash
If you’re using zsh, replace
bash
withzsh
.
Documentation: Getting Started With Corese-command
Corese-Python (beta)#
Download Corese-python jar file.
wget "https://github.com/Wimmics/corese/releases/download/release-4.5.0/corese-library-python-4.5.0.jar"
java -jar "-Dfile.encoding=UTF8" "corese-library-python-4.5.0.jar"
Documentation: Getting Started With Corese-python
Compilation from source#
Download source code and compile.
git clone "https://github.com/Wimmics/corese.git"
cd corese
mvn clean install -DskipTests