Installation
Thanks for choosing FlavorCLI! There are many different ways to install FlavorCLI. Choose the one that is the easiest or most convenient to you.
GitHub Releases
If you wish to download a pre-compiled version from GitHub releases, please follow the following steps:
Go to https://github.com/Lordseriouspig/flavorcli/releases/latest
Download the ZIP file corresponding to your OS.
Extract the contents to a folder, for example, a folder on your desktop.
Run the install script. (Ensure the binary file is in the same directory as the script)
Profit!
Uninstall
Run the uninstall script. That's literally it.
Package Managers
FlavorCLI is on a few package managers. These can be convenient if you already have them installed, and make for easy management of your packages.
Ensure you have cargo installed. Follow the instructions here if you do not.
Run
cargo install flavorcliProfit!
Uninstall
Ensure you still have cargo installed. Follow the instructions here if you uninstalled it.
Run
cargo uninstall flavorcli
Ensure you have an AUR helper installed, such as yay.
Run
yay -S flavorcliProfit!
Uninstall
Ensure you still have your AUR helper installed. (why wouldn't you..?)
Run
yay -Rns flavorcli
Compile from source (not recommended)
You have two options if you wish to install FlavorCLI from source.
Download source from GitHub Releases
Go to https://github.com/Lordseriouspig/flavorcli/releases/latest
Download the source code file (either the .zip or .tar.gz)
Extract it somewhere
Ensure you have cargo installed. Follow the instructions here if you do not.
Run
cargo build --release
From here, you may choose to run the install script after moving the binary into the root directory, or move it somewhere and add it to PATH manually
Using git clone
Ensure you have git installed.
Run
git clone https://github.com/Lordseriouspig/flavorcliEnsure you have cargo installed. Follow the instructions here if you do not.
Run
cargo build --release
From here, you may choose to run the install script after moving the binary into the root directory, or move it somewhere and add it to PATH manually
Downloading a development build
We do not recommend installing from the development branch. There is no guarantee that the build will be stable or work whatsoever. Things here change rapidly and may be half-complete or broken entirely.
If you want to try out the latest and greatest features, you may want to download from the development branch. Here's how to do that.
Ensure you have git installed.
Run
git clone -b development https://github.com/Lordseriouspig/flavorcliEnsure you have cargo installed. Follow the instructions here if you do not.
Run
cargo build --release
From here, you may choose to run the install script after moving the binary into the root directory, or move it somewhere and add it to PATH manually.
Last updated