## Download and install
### Corese-library
- Download from [maven-central](https://central.sonatype.com/namespace/fr.inria.corese)
```xml
fr.inria.corese
corese-core
4.5.0
fr.inria.corese
corese-jena
4.5.0
fr.inria.corese
corese-rdf4j
4.5.0
```
- Documentation: [Getting Started With Corese-library](/getting%20started/Getting%20Started%20With%20Corese-library.md)
### Corese-server
- Download from [Docker-hub](https://hub.docker.com/r/wimmics/corese)
```sh
docker run --name my-corese \
-p 8080:8080 \
-d wimmics/corese
```
- Alternatively, download [Corese-server jar file](https://project.inria.fr/corese/jar/).
```sh
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:
- [Getting Started With Corese-server](/getting%20started/Getting%20Started%20With%20Corese-server.md)
- [Use Corese-server with Python](/corese-python/Corese-server%20with%20Python.md)
### Corese-GUI
- Download on Flathub
- Or download [Corese-gui jar file](https://project.inria.fr/corese/jar/).
```sh
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](https://project.inria.fr/corese/jar/).
```sh
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.
```sh
curl -sSL https://files.inria.fr/corese/distrib/script/install-corese-command.sh | bash
```
To uninstall:
```sh
curl -sSL https://files.inria.fr/corese/distrib/script/uninstall-corese-command.sh | bash
```
> If you're using zsh, replace `bash` with `zsh`.
- Documentation: [Getting Started With Corese-command](/getting%20started/Getting%20Started%20With%20Corese-command.md)
### Corese-Python (beta)
- Download [Corese-python jar file](https://project.inria.fr/corese/jar/).
```sh
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](/corese-python/Corese-library%20with%20Python.md)
## Compilation from source
Download source code and compile.
```shell
git clone "https://github.com/Wimmics/corese.git"
cd corese
mvn clean install -DskipTests
```