I have a Python installation in C:\ProgramData\Anaconda2 and C:\ProgramData\Anaconda3. I would like to create a virtual environment using base Python (not anaconda) in C:\ProgramData. My question is two fold.
- Can I use a python instance as the base for the new env that has not been installed? I.e. A clean version of base Python without Anaconda? Or, do I have to download and install that first in a third directory and then use that?
- Can I specify which instance of python to use as the base when setting up the env? I.e from directory C:\ProgramData\ >>
$ virtualenv my_project --C:\ProgramData\Python27
? So in this example the new virtual environment would be created in C:\ProgramData\My_Project and use the clean base version of python instead of the Anaconda 2 or 3 distribution?
Thank you in advance.