Answers for "conda install dependencies from environment.yml what to change"

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
0

conda update with environment from yml file

conda env update --name myenv --file environment.yml --prune #--prune uninstalls dependencies which were removed from environment.yml
Posted by: Guest on September-09-2021

Code answers related to "conda install dependencies from environment.yml what to change"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language