Conda Switch Env

It's important to note that when you switch to a different environment, the packages and dependencies available to you will change. So, make sure to switch to the appropriate environment before starting a new project or running a script that depends on specific packages.

To switch between conda environments, you can use the following command in your terminal or Anaconda prompt:
conda activate [env_name]


Replace [env_name] with the name of the environment you want to activate. For example, to activate the myenv environment, you would run:
conda activate myenv


To switch back to the base environment, you can use the following command:

conda deactivate