Collection of code snippets related to Programming and ML.
Inspired by:
https://www.30secondsofcode.org/python/p/1
chrisalbon/code_py: A collection of well-commented code snippets for data science
conda create --name NAME python=3.9
conda env create --name NAME --file=environments.yml
conda env export --no-builds | grep -v "prefix" > environment.yml
conda env export --name NAME --no-builds | grep -v "prefix" > environment.yml
conda env update --file environment.yml --prune
conda env update --name NAME --file environment.yml --prune