summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2020-09-06 11:20:15 +0200
committerChristian Grothoff <christian@grothoff.org>2020-09-06 11:20:15 +0200
commitb0f3d60fec149ffee23872bd0e9290bebdf679e3 (patch)
tree0a0bd752ac82472fdfd4e6fb20d7420e32b3d639 /README.md
parent30bad63dacae699e5256fd6d6e27a968ad6cce30 (diff)
parent9cf423b539c24bf2c210f5a5dd997664f88727d6 (diff)
downloadtaler-merchant-demos-b0f3d60fec149ffee23872bd0e9290bebdf679e3.tar.gz
taler-merchant-demos-b0f3d60fec149ffee23872bd0e9290bebdf679e3.tar.bz2
taler-merchant-demos-b0f3d60fec149ffee23872bd0e9290bebdf679e3.zip
merge
Diffstat (limited to 'README.md')
-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*