From Mac To Pc - Different Anaconda Environments
I am a long time Mac/Linux user who has recently purchased a Windows laptop. I have two completely separate Anaconda installations on my Mac using PyEnv which allows me to isolate
Solution 1:
You can have one central installation of Anaconda and use the native environment feature. Let's say you install the 3.6 version of Anaconda onto your machine, you can create an environment with the full 2.7 version of Anaconda like this:
conda create--name py27 python=2.7 anaconda
And you can conda install whatever packages you desire into your environment.
Post a Comment for "From Mac To Pc - Different Anaconda Environments"