Exerciese-conda

The objective of this exercise is to walk you through the steps to create a new environment from scratch by using conda in a terminal environment.

  1. Open Anaconda Powershell (for Windows Users) or Terminal (for Mac Users)
  1. Create a new Python environment named pstc with Python=3.8
  1. list out all the environments on your computer to check if the pstc environment has been created successfully.
  1. Activate the pstc environment
  1. Install the package pandas to the pstc environment
  1. Install the package notebook from the channel conda-forge to the pstc environment
  1. list out all the packages in the pstc environment to double-check if those 2 packages have been installed successfully.
  1. Export the pstc environment to an exernal YAML file.