How can I use virtualenv to use 32-bit and 64-bit Python in Windows?

后端 未结 3 514
抹茶落季
抹茶落季 2021-02-10 22:55

I have 64-bit Python (2.7.5) installed at C:\\Python27 and 32-bit Python at C:\\Python27_32.

I would like to use virtualenv to set up a 32-bit

3条回答
  •  北海茫月
    2021-02-10 23:11

    If you installed the 32Bit version first, and install the 64Bit version second (And you added python to path), Then you can use the updated python launcher (py) to create the 64Bit version of your virtualenv

    py -m venv my-env-name

提交回复
热议问题