From 6b9bedf9dbdbeb3cebddd58fb4f794e959c6e06d Mon Sep 17 00:00:00 2001 From: Felix Blanke <info@fblanke.de> Date: Sat, 29 Mar 2025 21:38:46 +0100 Subject: [PATCH] Fix python version in INSTALL.md --- INSTALL.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/INSTALL.md b/INSTALL.md index 795ff71..6b7b36f 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -37,7 +37,7 @@ Python requirements are listed in ``requirements.txt``. They can be installed wi ### Manual Setup -1. setup a virtual environment using the proper python version ``virtualenv venv -p python3.10`` +1. setup a virtual environment using the proper python version ``virtualenv venv -p python3.11`` 1. activate virtualenv ``source venv/bin/activate`` 1. install python requirements ``pip install -r requirements.txt`` 1. setup necessary database tables etc. ``python manage.py migrate`` @@ -68,7 +68,7 @@ is not stored in any repository or similar, and disable DEBUG mode (``settings.p 1. create a folder, e.g. ``mkdir /srv/AKPlanning/`` 1. change to the new directory ``cd /srv/AKPlanning/`` 1. clone this repository ``git clone URL .`` -1. setup a virtual environment using the proper python version ``virtualenv venv -p python3.10`` +1. setup a virtual environment using the proper python version ``virtualenv venv -p python3.11`` 1. activate virtualenv ``source venv/bin/activate`` 1. update tools ``pip install --upgrade setuptools pip wheel`` 1. install python requirements ``pip install -r requirements.txt`` -- GitLab