How do I use different Python version in venv from standard library? (Not virtualenv!)

后端 未结 3 1566
耶瑟儿~
耶瑟儿~ 2020-12-14 02:06

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

3条回答
  •  自闭症患者
    2020-12-14 02:35

    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.

提交回复
热议问题