Conda ----- Create an Environment ''''''''''''''''''''' To create a new environment in Conda, execute the following line: .. code-block:: shell $conda create --name Addind the -f flag and a filename will create the environment from a yml file. .. code-block:: shell $conda create --name -f .yml Adding the name of a package to the end of the creation line will install that package on the new environment: .. code-block:: shell $conda create --name tensorflow=2.0.0 Activate an Environment ''''''''''''''''''''''' To activate an environment use: .. code-block:: shell $conda activate To list the available environments: .. code-block:: shell $conda env list