I am in Windows 10 and I need to switch between Python environments. I found there is a program named "Anaconda" for that.
After installing the heavy (1GB) Anaconda installer, with default options the command prompt still does not recognize conda command.
I searched and then found there should be "Anaconda Prompt", so I did Windows search on that, however, no chance:
The only way I was able to launch something that recognizes this program is opening the Anaconda Navigator, that proposed me an update, and it's still loading that.
Is there a simple way to switch between Python environments?


Yes, you can add Anaconda (or miniconda, whatever) to your PATH. On Windows, search for "Path" on Start menu, and select "Edit environment variables for your account". Then, on the top square, select
Path, and clickEdit.... Then add the path to your conda'sScriptsfolder. You'll need to check your installation, mine is:C:\Users\<USERNAME>\miniconda3\Scripts(changing<USERNAME>to my actual username.This will bring
condainto scope for new terminals. Then runconda init.NOTE: miniconda is just Anaconda without all its huge library of pre bundled packages. The only difference (apart from the installed size) is that you need to install with
conda installorpip installany packages you want. Generally speaking, Anaconda is unecessary for most users.