From 219416ae283cee717fbec607d4c73398ea8a4435 Mon Sep 17 00:00:00 2001 From: Manish Lamichhane Date: Sun, 4 Mar 2018 22:33:19 +0100 Subject: [PATCH] Since requirements.txt is provided, all the requirements for this project can be installed using pip install -r requirements.txt. This commit: - Updates README.md to add requirements installation info. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b934a33..c16f79d 100644 --- a/README.md +++ b/README.md @@ -7,10 +7,10 @@ The source code of originally based on post on [Building a Blockchain](https://m 1. Make sure [Python](https://www.python.org/downloads/) 2 or 3 is installed. -2. Install requirements. +2. Install requirements (preferably inside a [virtual environment] (https://docs.python.org/3/tutorial/venv.html)). ``` -$ pip install flask==0.12.2 requests==2.18.4 +$ pip install -r requirements.txt ``` 5. Run the server: