I have Python 3.6.0 |Anaconda 4.3.0 (64-bit)
installed on windows 10. I then downloaded and installed Python 2.7 | (32-bit)
.
My goal is to be able to open the command prompt and select either python 3.6 or 2.7 based on the environmental variable name.
Example:
python ---> Python 3.6.0 |Anaconda 4.3.0 (64-bit)
python2 ---> Python 2.7 | (32-bit)
I found a similar question here and I implemented the answer suggesting to use conda to create an ad hoc environment. However this approach leads to python 64-bit instead of 32-bit.
Can you suggest me a nice way to set up the environmental variables without messing anything up?