Skip to main content

Try Beta Features

We welcome our users to try new features as we develop them. However, these features are usually only partially or not tested, so we recommend only using them for testing purposes.

The features are in the development branch and listed as beta in the documentation. The installation process is similar to installing from Github Repository and add --branch dev.

Requirements

Installation Steps

Install Rust

Follow the instructions on the Rust website to install the Rust compiler toolchain. The link will direct you to the installation instructions based on your operating system. On macOS and Linux, you will use your terminal application to install the toolchain and then follow on-screen instructions. On Windows, you will download the installer and follow the installation wizard. Some package managers, such as brew on macOS, also provide an option to install Rust.

After the installation, on your terminal, run this command to verify the installation:

cargo --version

It should show the app version number. If it says command not found, we recommend restarting your system. On Linux or macOS, you can also try to run these commands without restarting the computer:

which $SHELL

If it contains ZSH, do:

source ~/.zshrc

If BASH, do:

source ~/.bashrc

Install SEGUL Development Version

To install the SEGUL development version on your terminal application, use the command below:

cargo install --git https://github.com/hhandika/segul.git --branch dev
tip

If you encounter compiling issues on Linux and Windows, such as linker not found or something similar, try additional steps explained in the package manager installation guide.