This repository has been archived by the owner on Jun 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 85
Install
Wenzel Kuhn edited this page May 14, 2022
·
3 revisions
Npm is the Node Package Manager, the standard way to install packages for Node.js. Lumo is packaged for NPM as lumo-cljs.
$ npm install -g lumo-cljs
If you get a permission failure, try this:
$ npm install -g lumo-cljs --unsafe-perm
tip
The installed binary will be named lumo
rather than lumo-cljs
.
Homebrew is a widely used package manager for macOS.
$ brew install lumo
The above installs the latest stable version of Lumo. If you want to install a binary built from master, try:
$ brew install --HEAD lumo
Your own your own with a master install: there's no guarantee that master is stable, or even working!
Lumo can also be run inside a Docker container, using the lumo image:
$ docker pull anmonteiro/lumo:latest
$ docker run -it anmonteiro/lumo
- Download the latest release.
- Move it to somewhere in your
$PATH
.
See CONTRIBUTING.md.