how to open a directory in conda environment code example
Example 1: How do I set Conda to activate the base environment by default?
conda config --set auto_activate_base true
Example 2: conda env
conda create -n myenv python=3.6
Example 3: conda install from yaml
conda env update -n my_env --file ENV.yaml