I am trying to have two environments in anaconda, one with python 3.4 and one with python 2.7. I already had everything working for python 3.4 and created a new environment with:
conda create -n python2 python=2.7 anaconda
and i activated this with:
activate python2
When i then run python, it still uses packages from C:\anaconda3\lib. Here are the standard packages for python 3.4 located (I think). This will give errors when using python 2.7. How can i make sure the python 2.7 environment uses al standard packages for python 2.7?
I tried manually copying the files to C:\Anaconda3\envs\python2\lib, but without success.