]> git.mxchange.org Git - fba.git/commitdiff
Continued:
authorRoland Häder <roland@mxchange.org>
Mon, 1 Apr 2024 02:49:23 +0000 (04:49 +0200)
committerRoland Häder <roland@mxchange.org>
Mon, 1 Apr 2024 02:53:22 +0000 (04:53 +0200)
- Python 3.11 needs a virtual environment
- so please add

source "${HOME}/fba/venv/bin/activate"

... to your ~/.bashrc

.gitignore
venv/.gitkeep [new file with mode: 0644]
venv/pyvenv.cfg [new file with mode: 0644]

index 7400941599e21b1d5f8c071a5e9367be6cf7c0ad..2f6ab023ffa8d5344a6a351160bbfdd436532d74 100644 (file)
@@ -6,3 +6,9 @@ config.json
 *.pyc
 report.log
 *.log
+
+# Virtual environment
+venv/bin/
+venv/include/
+venv/lib/
+venv/lib64
diff --git a/venv/.gitkeep b/venv/.gitkeep
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/venv/pyvenv.cfg b/venv/pyvenv.cfg
new file mode 100644 (file)
index 0000000..5bd75b3
--- /dev/null
@@ -0,0 +1,5 @@
+home = /usr/bin
+include-system-site-packages = true
+version = 3.11.2
+executable = /usr/bin/python3.11
+command = /usr/bin/python3 -m venv /home/fba/fba/venv