Spyder does not run in Anaconda virtual environment on Windows 10

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.

Leave a Comment