From c93ad0e20150556359e12a86a714ec28ea12201c Mon Sep 17 00:00:00 2001 From: Torsten Grothoff Date: Sun, 23 Aug 2020 11:52:42 +0200 Subject: README: Added a section and moved an instruction Added a section to the readme for quickly installing all dependencies in one command (for lazy people) Moved the section for configuring under the installing python one. --- README.md | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index cb5bba6..967bafa 100644 --- a/README.md +++ b/README.md @@ -6,19 +6,19 @@ Step 1: `cd` into the directory:
> ```$ cd taler-merchant-demos```
-Step 2: configure it using:
+Step 2: Ensure Python3.5 or above is installed using a command like:
-> ```$ ./configure --destination=local``` +> ```$ sudo apt install python3.8 -y```
-Step 3: Ensure Python3.5 or above is installed using a command like:
+Step 3: Ensure Python3 Pip is installed:
-> ```$ sudo apt install python3.8 -y``` +> ```$ sudo apt install python3-pip -y```
-Step 4: Ensure Python3 Pip is installed:
+Step 4: configure it using:
-> ```$ sudo apt install python3-pip -y``` +> ```$ ./configure --destination=local``` Step 5: Install UWSGI
*NOTE: DO NOT INSTALL USING PIP2 (on my system, that is what the pip command uses) - INSTALL IT USING PIP3* @@ -29,9 +29,13 @@ Step 5: Install UWSGI
Step 6: Install LXML *NOTE: DO NOT INSTALL USING PIP2 (on my system, that is what the pip command uses) - INSTALL IT USING PIP3* -> ```pip3 install lxml``` +> ```$ pip3 install lxml```
+## Quick Install for the dependencies +Here's one command to automatically install all dependencies at once: +> ```$ sudo apt install python3.8 python3-pip -y; pip3 install lxml uwsgi; ./configure --destination=local``` + ## Configuring the demo *This is just how I did it, and not the main method of doing it* -- cgit v1.2.3