Skip to content

Installation

Botaro Shinomiya edited this page Nov 1, 2024 · 2 revisions

First of all, you need to install NodeJS and NPM. It is recommended to use the NodeJS version v20.9.0 LTS. After you made sure that you got all the dependencies, you can now install Lusk CLI using any of these methods:

Install using NPM

  • For Windows:
    npm i -g lusk
    
  • For Linux/Unix:
    sudo npm i -g lusk
    

Manual installation

For manual installation, you need git CLI as an extra (development) dependency. After installation, you can perform manual installation by typing commands specified below:

  • For Windows:
    git clone --recurse-submodules https://github.com/luskproject/lusk
    cd lusk
    npm link
    
  • For Linux/Unix:
    git clone --recurse-submodules https://github.com/luskproject/lusk
    cd lusk
    sudo npm link
    

Clone this wiki locally