From 81a8a2a151f3e480d9acbc0b27467bc1cc590d0c Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Mon, 1 Apr 2024 04:49:23 +0200 Subject: [PATCH] Continued: - Python 3.11 needs a virtual environment - so please add source "${HOME}/fba/venv/bin/activate" ... to your ~/.bashrc --- .gitignore | 6 ++++++ venv/.gitkeep | 0 venv/pyvenv.cfg | 5 +++++ 3 files changed, 11 insertions(+) create mode 100644 venv/.gitkeep create mode 100644 venv/pyvenv.cfg diff --git a/.gitignore b/.gitignore index 7400941..2f6ab02 100644 --- a/.gitignore +++ b/.gitignore @@ -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 index 0000000..e69de29 diff --git a/venv/pyvenv.cfg b/venv/pyvenv.cfg new file mode 100644 index 0000000..5bd75b3 --- /dev/null +++ b/venv/pyvenv.cfg @@ -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 -- 2.39.5