I have installed Python 3.4.0 and created virtual environment with python -m venv myenv. How can I change Python version in my virtual environment? Documentati
python -m venv myenv
It's simply impossible. To create python venv of specific Python version, we need this specific version.
Obviously, Python interpreter doesn't contain all previous versions. Python 3.4.1 doesn't contain Python 2.7.8 executable anywhere inside.