summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md18
1 files 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:<br/>
> ```$ cd taler-merchant-demos```
<br/>
-Step 2: configure it using:<br/>
+Step 2: Ensure Python3.5 or above is installed using a command like:<br/>
-> ```$ ./configure --destination=local```
+> ```$ sudo apt install python3.8 -y```
<br/>
-Step 3: Ensure Python3.5 or above is installed using a command like:<br/>
+Step 3: Ensure Python3 Pip is installed:<br/>
-> ```$ sudo apt install python3.8 -y```
+> ```$ sudo apt install python3-pip -y```
<br/>
-Step 4: Ensure Python3 Pip is installed:<br/>
+Step 4: configure it using:<br/>
-> ```$ sudo apt install python3-pip -y```
+> ```$ ./configure --destination=local```
Step 5: Install UWSGI<br>
*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<br>
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```
<br>
+## 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*