summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTorsten Grothoff <tg@wafflepowered.com>2020-08-23 11:52:42 +0200
committerTorsten Grothoff <tg@wafflepowered.com>2020-08-23 11:52:42 +0200
commitc93ad0e20150556359e12a86a714ec28ea12201c (patch)
tree1ffe77b4ea95dba0f45e1f0df68c0cccb63d590e
parentc98bc6176d7911282624eaf398a1bea83c512fda (diff)
downloadtaler-merchant-demos-c93ad0e20150556359e12a86a714ec28ea12201c.tar.gz
taler-merchant-demos-c93ad0e20150556359e12a86a714ec28ea12201c.tar.bz2
taler-merchant-demos-c93ad0e20150556359e12a86a714ec28ea12201c.zip
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.
-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*