RCZ
(Roelf Zomerman)
1
Hi everyone,
I rebaselined my development environment on my Mac… but the new sources require python3.12 to be installed… which I did…
python3 --version shows "Python3.12.6"
but ./setup still complains about 3.11.10 being installed…
how to tell ./setup that it needs to use the new version?
karwosts
(karwosts)
2
I believe script/setup will use your system default python3 version when creating a new venv if you don’t specify.
Try removing your old venv and manually creating a new venv before running setup with python3.12 -m venv venv
Or if 3.12 is already your system version, then maybe you just have an old venv that needs to be removed.
1 Like