Skip to content

Latest commit

 

History

History
54 lines (35 loc) · 1.84 KB

package.md

File metadata and controls

54 lines (35 loc) · 1.84 KB

Platform package install (recommended)

You can install zoe using one of the platform packages listed below. Only few platforms are supported for now but more will come in the future.

The platform packages are self contained. They ship with their own version of the java virtual machine (thus the higher size of the package). The host machine does not need to have it's own java runtime.

The platform packages are built with jpackage and JDK 14.

Ubuntu / Debian

  1. Download the .deb package from the latest release page and install it using dpkg:

    ZOE_VERSION='0.26.1'  # change it to the suitable version
    curl -L "https://github.com/adevinta/zoe/releases/download/v${ZOE_VERSION}/zoe_${ZOE_VERSION}-1_amd64.deb" -o /tmp/zoe.deb
    sudo dpkg -i /tmp/zoe.deb
  2. Add the /opt/zoe/bin to your path by appending the following line in your .bashrc (or .zshrc) :

    PATH=$PATH:/opt/zoe/bin
    
  3. You can now initialize zoe configuration :

    zoe -v config init

You are now ready to use zoe. Go to the Getting started section.

Centos

  1. Install the latest .rpm package from the latest release page :

    ZOE_VERSION=0.26.1  # change it to the suitable version
    sudo rpm -i "https://github.com/adevinta/zoe/releases/download/v${ZOE_VERSION}/zoe-${ZOE_VERSION}-1.x86_64.rpm"
  2. Add the /opt/zoe/bin into your path by appending the following line in your .bashrc (or .zshrc) :

    PATH=$PATH:/opt/zoe/bin
    
  3. You can now initialize zoe configuration :

    zoe -v config init

You are now ready to use zoe. Go to the Getting started section.