Answers for "update conda env from yml"

2

conda update existing environment from yml

# Basic syntax:
conda activate environment_to_update # Activate environment, can be base
conda env update --file environment.yml # Update env from .yml file
Posted by: Guest on June-26-2021
1

conda create environment from yml

# Basic syntax:
conda create --name environment_name --file environment.yml
Posted by: Guest on June-26-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language