Installing the Tidelift CLI
The Tidelift command line interface (Tidelift CLI) provides an alternate way to initiate scans of a project and check the alignment of a project with your organization's catalog of approved open-source packages.
Install instructions
Note: A Tidelift account is needed to use Tidelift CLI.
1. Install the CLI tool into your user's binary directory ( we suggest a ~/bin on Mac & Linux) using the curl command below for your OS.
- Linux:
curl https://download.tidelift.com/cli/tidelift -o ~/bin/tidelift
- MacOS:
curl https://download.tidelift.com/cli/tidelift_darwin -o ~/bin/tidelift
- Windows:
curl https://download.tidelift.com/cli/tidelift.exe -o tidelift.exe -o tidelift.exe
chmod +x ~/bin/tidelift
)
~/bin
is in your path, you will be able to use Tidelift CLI by running
tidelift
. Otherwise, run
~/bin/tidelift
.
Checking the Version
To check to see what version of the Tidelift CLI you are running, please run tidelift version
. You can always see what the most recent version is by downloading from https://download.tidelift.com/cli/tidelift-cli.version
Updating and removing
To update to the latest version of the CLI tool, you can run the command tidelift selfupdate
To uninstall Tidelift CLI, remove the downloaded binary from your computer (e.g. on Linux and MacOS, rm ~/bin/tidelift
).