change environment python code example
Example 1: conda create environment based on requirements.txt
# using pip
pip install -r requirements.txt
# using Conda
conda create --name --file requirements.txt
Example 2: conda write environment.yml
conda env export > environment_droplet.yml
Example 3: create new python environment
py -m venv env