From 30646b72e99336cad11112a133673e3fbf513724 Mon Sep 17 00:00:00 2001 From: dbohdan Date: Thu, 2 Aug 2018 15:30:19 +0300 Subject: [PATCH] docs(readme): Add instructions for PyPI install --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index 8e5dd84..f3107de 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,17 @@ commands `toml2yaml`, `toml2json`, `yaml2toml`, `yaml2json`. `json2toml` and You will need Python 2.7 or Python 3.3 or later. +You can install the latest release from PyPI using pip. + +```sh +python3 -m pip install remarshal +``` + +Alternatively, clone the `master` branch to install the development version. + ```sh +git clone https://github.com/dbohdan/remarshal +cd remarshal python3 setup.py install --user ```