Create a Conda env from a requirements.txt file

how to quickly create a new conda env from a requirements.tct file
FYI
conda
python
Author

Jerad Acosta

Published

September 20, 2022

Create a Conda environment with all of the packages from a requirements.txt file automatically downloaded

conda create --name <env_name> --file requirements.txt

<env_name> is the name you would like to give the environment
requirements.txt is the path to the requirements.txt file