I have python 3.7.3 installed on Ubuntu. But I want to have a virtual environment with python 3.7.4 installed.
python3 -m venv: how to specify Python point release/version? says to create a venv with sepecific version itself, but I do not want to upgrade the system wide installation. I would not prefer to install python anywhere (even for specific user) other than the virtual environment itself. It is a new virtual environment.
Is it possible to install a newer python version in venv without installing it anywhere else?
I am open to any configuration changes (hacks) to achieve this.