SnippetKit

Installation

How to install SnippetKit CLI on macOS, Linux, and Windows.

Installation Guide

SnippetKit is a powerful cross-platform CLI tool that simplifies code snippet management. Follow these installation steps for your operating system.

Prerequisites

  • macOS: Homebrew (recommended)
  • Linux: sudo privileges
  • Windows: PowerShell with admin privileges or Chocolatey

macOS Installation

brew tap rishanreddy/snippetkit https://github.com/rishanreddy/snippetkit
brew install rishanreddy/snippetkit/snippetkit

Verification

Verify that the installation was successful:

snippetkit --help

Linux Installation

Ubuntu/Debian

  1. Download the latest .deb package:
curl -LO https://github.com/rishanreddy/snippetkit/releases/latest/download/snippetkit_linux_amd64.deb
  1. Install the package:
sudo dpkg -i snippetkit_linux_amd64.deb

Using the install script (Any Linux)

curl -fsSL https://get.snippetkit.dev | sh

Manual installation (tar.gz)

  1. Download the archive:
wget https://github.com/snippetkit/cli/releases/latest/download/snippetkit_linux_amd64.tar.gz
  1. Extract to a directory in your PATH:
sudo tar -xzf snippetkit_linux_amd64.tar.gz -C /usr/local/bin
  1. Make it executable:
sudo chmod +x /usr/local/bin/snippetkit

Verification

snippetkit --help

Windows Installation

Using Chocolatey

choco install snippetkit

Manual Installation

  1. Download the latest Windows executable from GitHub Releases
  2. Move the executable to a directory in your system PATH
  3. Open a new Command Prompt or PowerShell window and verify:
snippetkit --help

Configuration

After installation, set up your SnippetKit account:

snippetkit login

Follow the prompts to authenticate with your SnippetKit account.

Updating SnippetKit

To update to the latest version:

# macOS
brew upgrade snippetkit
 
# Windows
choco update snippetkit

Uninstalling

# macOS
brew uninstall snippetkit
 
# Linux (Debian/Ubuntu)
sudo apt remove snippetkit
 
# Windows
choco uninstall snippetkit