gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[taler-www] 02/42: Added a description of how to use Python venv


From: gnunet
Subject: [taler-www] 02/42: Added a description of how to use Python venv
Date: Mon, 27 Nov 2023 23:53:58 +0100

This is an automated email from the git hooks/post-receive script.

andreas-habegger pushed a commit to branch master
in repository www.

commit 54e5186ac5927999d83cc8baadd350a2bda3f5a3
Author: Andreas HABEGGER <andreas.habegger@bfh.ch>
AuthorDate: Thu Nov 16 17:21:37 2023 +0100

    Added a description of how to use Python venv
---
 .gitignore       |  2 ++
 README           | 21 ++++++++++++++++++++-
 requirements.txt |  3 +++
 3 files changed, 25 insertions(+), 1 deletion(-)

diff --git a/.gitignore b/.gitignore
index 3a23b32..ae44753 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,5 @@
+# Exclude Python virtual environment -- see README
+.venv
 
 *.mo
 locale/messages.pot
diff --git a/README b/README
index cef2685..2507a3d 100644
--- a/README
+++ b/README
@@ -82,7 +82,26 @@ Install python3.7, py37-babel, npm, nodejs from pkgsrc.
 
 Adjust the values in config.mk:    PYTHON=python3.7    BABEL=pybabel-3.7
 
-       
+====================
+Python virtual env
+====================
+* Install python3 i.e on Debian
+```
+# apt install python3
+```
+* Create virtual environment **.venv directory is excluded with git ignore 
paterns**
+```
+python3 -m venv .venv
+```
+* Activate the virtual environment
+```
+source .venv/bin/activate
+```
+* Install all requirements from [requirements.txt](requirements.txt) using pip
+```
+pip install -r requirements.txt
+
+
 B. When reusing the existing web site from Git, get its files and folder 
structure:
 # git clone git+ssh://git@git.taler.net/www.git
 
diff --git a/requirements.txt b/requirements.txt
new file mode 100644
index 0000000..9ac6979
--- /dev/null
+++ b/requirements.txt
@@ -0,0 +1,3 @@
+ruamel.yaml
+jinja2
+babel

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]