I installed Anaconda 2.2.0 for Windows and created a virtual environment through:
> conda create -n my-env anaconda
The environment is successfully created, and I see it in my list of envinronments (and indeed, the directory is in Anaconda \ envs ..)
> conda info -e
However, when you run the activate.bat script to switch the envinronment, although it seems to be successful, the switch is not actually made:
> activate.bat my-env Activating environment "astropy-dev"... > conda list -e # conda environments: # my-env D:\Anaconda\envs\my-env root * D:\Anaconda
C * indicating the active medium.
I saw some problems with conda enabled on Windows, but did not find this specific problem.
For more information: I want to copy the entire distribution package of Anaconda package, and then install the dev version on one package.
python windows conda anaconda
Jdog
source share