summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2020-08-23 11:58:20 +0200
committerChristian Grothoff <christian@grothoff.org>2020-08-23 11:58:20 +0200
commita1f8eb232edfd13b91207d9a20bb81d9eaee31bc (patch)
treea90b7c159211098e54f1d62e6e1374f9d407a9c8
parent063e68ec063ea29e32da920de83dbdad3fec185e (diff)
parentc93ad0e20150556359e12a86a714ec28ea12201c (diff)
downloadtaler-merchant-demos-a1f8eb232edfd13b91207d9a20bb81d9eaee31bc.tar.gz
taler-merchant-demos-a1f8eb232edfd13b91207d9a20bb81d9eaee31bc.tar.bz2
taler-merchant-demos-a1f8eb232edfd13b91207d9a20bb81d9eaee31bc.zip
Merge branch 'torsten-redesign' of git+ssh://git.taler.net/taler-merchant-demos into torsten-redesign
-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*