Install Options

Homebrew

Homebrewopen in new window is the de-facto package manager on macOS. If you are installing on macOS, this is the way to go.

$ brew tap jamesstidard/formulas
$ brew install mzo

PyPI

WARNING

For those familiar with Python package management.

Monzo CLI is a Python application and is hosted on PyPI so can be installed as a Python package.

I personally use pyenvopen in new window for managing multiple Python versions on a single machine in combination with pipsiopen in new window for installing global Python packages as it manages creating specific Python virtual environments for each package - preventing any dependency conflicts with other installed python packages.

# install
$ pipsi install mzo --python 3.6.5

Though if you've opted to install through this method, you probably already have a install process in mind.

Source

If you'd like to get it directly from the source, it can be found hosted on GitHub hereopen in new window.

The documentation on how to build the environment should be on the project's README.

$ git clone https://github.com/jamesstidard/mzo-cli.git
$ cat mzo-cli/README.md