I need to install an older version of Python to get some software to work. 3.9 is the newest version I can use.
Someone else had this issue and the answer was:
sudo add-apt-repository universe
sudo apt update
sudo apt install python3.9
However this does not work and just gives an error that the 3.9 package can not be found.
So how can I remove 3.10 and get 3.9 instead? Thanks.