Use different Python version with virtualenv

后端 未结 30 3253
自闭症患者
自闭症患者 2020-11-21 05:03

I have a Debian system currently running with python 2.5.4. I got virtualenv properly installed, everything is working fine. Is there a possibility that I can use a virtuale

30条回答
  •  粉色の甜心
    2020-11-21 05:14

    On windows:

    py -3.4x32 -m venv venv34
    

    or

    py -2.6.2 -m venv venv26
    

    This uses the py launcher which will find the right python executable for you (assuming you have it installed).

提交回复
热议问题