From debce902401818cf33dbded04f657fff26f904e4 Mon Sep 17 00:00:00 2001 From: Elijah Date: Fri, 12 Jan 2024 09:49:08 +0100 Subject: [PATCH] Install python3-venv --- .gitea/workflows/ci-pipeline.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitea/workflows/ci-pipeline.yaml b/.gitea/workflows/ci-pipeline.yaml index ee87bf1..1c36264 100644 --- a/.gitea/workflows/ci-pipeline.yaml +++ b/.gitea/workflows/ci-pipeline.yaml @@ -19,6 +19,10 @@ jobs: run: | python3 -c "print('Python is installed')" + - name: Install python3-venv + run: | + apt-get install python3-venv + - name: Create virtual environment run: | python3 -m venv venv