From: Roland Häder Date: Mon, 1 Apr 2024 02:49:23 +0000 (+0200) Subject: Continued: X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=81a8a2a151f3e480d9acbc0b27467bc1cc590d0c;p=fba.git Continued: - Python 3.11 needs a virtual environment - so please add source "${HOME}/fba/venv/bin/activate" ... to your ~/.bashrc --- 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