This is my first post here. I tried to find an answer to this question but to no avail.
Just installed Anaconda2 (2.7.11 Python kernel) on my Win10 machine. I am trying to learn the conda command. Here is my problem.
conda create -n myenv python=3.4
command.activate myenv
.conda env list
it shows as active (star next to it).print(sys.version)
.Am I doing anything wrong or is this just windows 10 problem.
Thanks in advance, Andy
When you type spyder
, the search for this command begins in the paths that the conda environment created. If it cannot find it there, it will go and search at other places. In your case in the paths of the default Anaconda install. So after you activate your environment:
activate myenv
you need to install sypder
inside this environment:
(myenv) conda install spyder
where (myenv)
indicates the active environment.