Skip to content

Latest commit

 

History

History
56 lines (29 loc) · 1.63 KB

install.md

File metadata and controls

56 lines (29 loc) · 1.63 KB

Install

Download prepared binaries

Microsoft Windows

Apple Mac

Build from source

In order to build and work with melrose on your operating system, the following components need to be installed:

  • melrose executable program
  • (optionally) Melrōse plugin for Visual Studio Code

Depending on your operating system, different steps are required.

[all platforms] Melrōse plugin for Visual Studio Code

Search and install the extension from the editor or go to the Marketplace published package

Mac OSX

You need to install the Go SDK for compiling the program on your machine.

go install -v github.com/emicklei/melrose/cmd/melrose...@latest

After installing melrōse, you can start the tool in a Terminal using:

$ melrose

If this command cannot be found then you need to add $GOPATH/bin to your PATH.

Linux

On Ubuntu / Debian

sudo apt-get install libasound2-dev

You need to install the Go SDK for compiling the program on your machine.

go install github.com/emicklei/melrose/cmd/melrose@latest

After installing both libasound2 and melrōse, you can start the tool in a Terminal using:

$ melrose

If this command cannot be found then you need to add $GOPATH/bin to your PATH.

Windows

Look at the build script (.travis.yml) of melrose-windows for detailed steps to build an executable from source.