I need to use python3.10 on Ubuntu23.04.
I've tried to install python3.10 on Ubuntu23.04, alongside with python3.11. And, it looks like it has been installed.
But, python3.10-venv didn't.
Than I've tried to switch versions and try install python3.10-venv again, working under python3.10, and looks like they have been switched.
But, with python3.10 i have not-working package manager
(looks like python3.11 is used in 23.04 system components).
I've tried to sudo add-apt-repository ppa:deadsnakes/ppa
, working under python3.11 (bc apt doesn't work with python3.10 in current situation), but soon i realised,
that deadsnakes doesn't support Ubuntu 23.04 for now.
So, is there any variants how to install fully working python3.10 alongside with python3.11 on Ubuntu23.04, with working package manager?
python3.11
for now. In case i switch the system wide python ver to 3.11 (even without loading live disk and rerooting system, like in this linked manual), i can absolutely normally work with apt and all stuff fromubuntu 23.04
. Main problem is to usepython3.10
. I can use this version normally, but i can't install basic packages for it, likevenv
– MIku Jun 28 '23 at 10:26python3-venv
... You can as well dopip3 install virtualenv
thenvirtualenv env -p /bin/python3.10
... Or even/bin/python3.10 -m pip install virtualenv
and then/bin/python3.10 -m virtualenv env
– Raffa Jun 28 '23 at 10:36drops
the selecting process and even doesn't show choose 3.10 interpreter in the existing interpreters list. – MIku Jul 03 '23 at 15:06