Marmot was developed with Linux, MacOS, and Windows Subsystem for Linux (WSL) in mind.
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
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.
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.