Installation
lip is a general package installer. To get started, you need to install the lip executable on your system.
Pre-built Binaries
You can download the latest pre-built binaries from the Releases page.
- Download the archive matching your operating system and architecture.
- Extract the archive.
- Add the extracted directory to your system's
PATHenvironment variable.
Install Scripts
Windows (Winget)
The easiest way to install lip on Windows is via winget:
shell
winget install futrime.lipGNU/Linux and macOS
You can use the installation script to download and install lip automatically:
shell
curl -fsSL https://raw.githubusercontent.com/futrime/lip/HEAD/scripts/install.sh | shBuilding from Source
If you prefer to build lip from source, ensure you have the following installed:
Steps
Clone the repository:
shellgit clone https://github.com/futrime/lip.git cd lipBuild and Publish:
Run the following command to build the CLI tool:
shelldotnet publish src/Lip.Cli/Lip.Cli.csproj -c Release -o outInstall:
The
lipexecutable will be located in theoutdirectory. Add this directory to yourPATHor move the executable to a directory already in yourPATH(e.g.,/usr/local/binon Linux/macOS).