Was looking for a way to set python3.12 for system or specific project.
found this gist for Ubuntu under WSL2
But I hope last four lines are universal:
{ cd to cinelerra-gg's source root where autogen.sh is first, I think }
=====
| - when everything are done, ready to create venv `python3.12 -m venv venv` |
| - do activate the virtual env `source venv/bin/activate` |
|
| - check python version using on venv `python --version` |
|
- do deactivate the virutal env just type `deactivate` on root project
|