Answers for "conda install from yaml file"

6

conda create environment based on requirements.txt

# using pip
pip install -r requirements.txt

# using Conda
conda create --name <env_name> --file requirements.txt
Posted by: Guest on September-09-2020
2

conda install from yaml

conda env update -n my_env --file ENV.yaml
Posted by: Guest on April-30-2020

Python Answers by Framework

Browse Popular Code Answers by Language