Anaconda Create environment:
// Below is the environment for creating Python =3.6, called Py36
Conda create-n py36 Python =3.6
Delete the environment (don’t delete the environment)
conda remove -n py36 –all
Activate the environment
// The next py36 is an environment name
Conda activate Py36 (the previous version of Conda4 was: Source activate Py36)
Out of the environment
Conda Deactivate (the previous version of Conda4 was: Source Deactivate)