how to update the conda env code example
Example 1: conda update package
# Basic syntax:
conda update packagename # To update specific package in the current env
conda update --all # To update all packages in the current environment
conda update -n myenv --all # To update all packages in myenv environment
Example 2: remove environment conda
conda remove --name myenv --all