Quick Install
The fastest way to install on any platform:curl -fsSL https://dl.lasersell.io/install.sh | bash
lasersell --version
Platform Guides
- Linux
- macOS
- Windows (WSL)
- Docker
install.sh (recommended)
curl -fsSL https://dl.lasersell.io/install.sh | bash
Manual APT setup
curl -fsSL https://dl.lasersell.io/KEY.gpg | sudo gpg --dearmor -o /usr/share/keyrings/lasersell-archive-keyring.gpg
ARCH="$(dpkg --print-architecture)"
echo "deb [arch=${ARCH} signed-by=/usr/share/keyrings/lasersell-archive-keyring.gpg] https://dl.lasersell.io stable main" | sudo tee /etc/apt/sources.list.d/lasersell.list > /dev/null
sudo apt update
sudo apt install lasersell
install.sh (recommended)
curl -fsSL https://dl.lasersell.io/install.sh | bash
Homebrew
brew tap lasersell/lasersell
brew install lasersell
Tarball (no Homebrew)
curl -fsSL https://dl.lasersell.io/install.sh | bash -s -- --method tar
LaserSell runs on Windows through WSL (Windows Subsystem for Linux).Restart your computer.
1. Install WSL
Open PowerShell as Administrator:wsl --install
2. Install LaserSell
Open your WSL distro (e.g. Ubuntu) and run:curl -fsSL https://dl.lasersell.io/install.sh | bash
1. Prepare
Install Docker Desktop and create an empty folder namedlasersell.2. Run
Open a terminal,cd into the folder, then run:macOS / Linux:docker run -it --rm -v "$(pwd):/app/.lasersell" lasersell/lasersell
docker run -it --rm -v ${PWD}:/app/.lasersell lasersell/lasersell
Upgrading
| Method | Command |
|---|---|
| APT | sudo apt update && sudo apt install lasersell |
| Homebrew | brew upgrade lasersell |
| install.sh / Tarball | Rerun curl -fsSL https://dl.lasersell.io/install.sh | bash |
| Docker | docker pull lasersell/lasersell |
CLI Flags
| Flag | Short | Description |
|---|---|---|
--setup | Force-run the onboarding wizard | |
--config <path> | -f | Path to a custom config file |
--debug | Write debug-level logs to ~/.lasersell/debug.log | |
--smoke | Run a connectivity health check and exit | |
--export-private-key | Export your wallet’s base58 private key to stdout |
--smoke, --setup, and --export-private-key are mutually exclusive.
