Build Liana from sources on MacOS

Rust toolchain

If you visit rust website you will find the commands for install rust on your system:

terminal

You should open a terminal:

terminal

Copy the command into the terminal and hit enter:

terminal

Select 1) Proceed with standard installation or press enter

terminal

Rust is now installed you can enter this command and check cargo is well installed:

. "$HOME/.cargo/env"

then

cargo --version

terminal

Liana source code

Download the liana repository (source code):

git clone https://github.com/wizardsardine/liana.git

Note: if git is not yet installed on your system, you'll be prompted to accept to install it, then you should re-run the command for clone the Liana repository.

terminal

Then cd into the liana repository:

cd liana/gui

and build Liana:

terminal

cargo build --release

if the prompt ends up with this you are good:

terminal

you can now run liana w/ this command:

./target/release/liana-gui

terminal