Is it possible to create Python 3.4.3
virtual environment using venv when running Python 3.9
in my windows? I have tried with Anaconda also but the options available are only 3.8, 3.7, 3.6, 3.5 & 2.7
If I download and install Python 3.4.3
from python website, will it be ok? Can it run alongside Python 3.9
?
P.S. Python 3.4.3
is very old but one of our servers is still using it without the possibility of an update. I would like to first test my web app locally whether it works with Python 3.4.3
before deploying.
(or)
Is it possible to create a Python 3.9
inside Python 3.4.3
venv? that would also solve my problem if it's possible :)
Thanks!