conda info --envs: lists all environmentssource activate <env name>: activate an environmentsource deactivate: deactivate an environmentconda list: list all packages installedconda create --name <env name> python=3 astroid babel: create new environment, specify version of python, and install packages- WINDOWS NOTE: SOURCE is not recognized. When deactivating and activating in the anaconda command prompt, skip
sourceand just typedeactivateoractivatedepending on what you are trying to do. conda env export > environment.yml: export conda environment requirements list to a fileconda env remove -n ENV_NAME: delete environment