Answers for "create new conda env with location"

7

conda create environment from file

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

new env in conda

conda create --name myenv
Posted by: Guest on February-20-2020
3

create conda environment

conda create -n <my_env> python=3.8
#Remember to install "ipykernel" so you can use jupyter notebook.
conda install ipykernel
Posted by: Guest on September-22-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language