Answers for "conda create environment from a text file"

9

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
14

conda create environment from file

conda env create -f environment.yml
Posted by: Guest on March-16-2020

Code answers related to "conda create environment from a text file"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language