downgrade from 3.14 to 3.12

Hi
I need to downgrade my Python from 3.14 to 3.12 since I need to use Django 4.2.7 on my machine. Is that possible?

Yes.

In many cases, you don’t even need to remove your Python 3.14 installation. It’s usually possible to have multiple versions of Python installed concurrently.

Ok, sounds good. I haven’t been able to find a proper guide to doing it. Should I just install them both on the machine, and the I chose which one to use when I use runserver?

What operating system are you using?

You wouldn’t just use it for running runserver, you should create a complete virtual environment using that version of Python, so that you have the right version of libraries and third-party packages installed.