just a test
python -m venv ./venv
source ./venv/bin/activate
conda create -n life-short-use-python
conda activate life-short-use-python
# single
python -m pip install <pkg-name>
# multi
python -m pip install -r requirements.txt
python -m pip freeze > requirements.txt
pre-commit install
pre-commit run --all-files