From f3475eba7721ff31ebcd248fbf6504b237b7f2df Mon Sep 17 00:00:00 2001 From: Jonathan Garbee Date: Thu, 19 Feb 2015 17:36:23 -0500 Subject: [PATCH] Updated contributing guide to reflect how to setup requirements with the new validation. --- contributing.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/contributing.md b/contributing.md index b603c99..20e9421 100644 --- a/contributing.md +++ b/contributing.md @@ -2,7 +2,15 @@ ## Requirements -You only need to have python 2.7 installed to generate and validate devices. +You need to have Python 2.7 installed with jsonschema. +The easy way to install the jsonchema package is through `pip`. +This is achieved with the following command from the repository root: + +```sh +pip install -r 'requirements.txt' +``` + +> Note: You may need to run the pip installation as root using `sudo` or similar methods. ## Which branch?