Skip to content

Latest commit

 

History

History
48 lines (33 loc) · 1.49 KB

installation.md

File metadata and controls

48 lines (33 loc) · 1.49 KB

Installation

Marmot was developed with Linux, MacOS, and Windows Subsystem for Linux (WSL) in mind.

Clone and install

Clone this repository to a location of your choice. Marmot doesn't have its own package to install; just a single command that needs to be on your path somewhere. You might try something simple like this:

# Might require sudo
make install

# Might be unnecessary, if this is already on your path
path+=(/usr/local/bin)

If you need to install to somewhere other than /usr/local/, run make with another prefix:

prefix=/path/to/programs make install

Install dependencies

Marmot uses a few packages that are listed in etc/macos/Brewfile*. If you happen to be using Homebrew, try this:

# Installs programs needed at runtime
brew bundle install --file=./etc/macos/Brewfile.user

If you use another package manager such as apt (Debian, Ubuntu), there should be similarly named packages that provide the same commands. It doesn't matter where they come from, as long as they are reasonably up to date and on your path.

Please also remember to install zsh if you do not already have it. You don't have to use zsh as your main shell; it's just what Marmot uses internally.

Use it

If you can run marmot --help, you have a working installation. If you can re-start your terminal and it still works, you're in even better shape.

Now head over to Getting Started to see if Marmot does anything that might be useful to you.