Conda
Basics
conda env list
conda create -n env_name python=3.11 --no-default-packages
conda env remove -n ENV_NAMEExport to yml file
# after conda activate env_name
conda export env > env_test.ymlCreate env with yml file
conda env create –f xxx.ymlMake a copy of a conda environemnt
conda create --clone env_name -n new_env_nameUpgrade package
pip install <package_name> --upgradeUpdate conda to the current version
conda update conda