Answers for "anaconda environment linux"

2

conda linux

1) Go to: https://www.anaconda.com/products/individual
2) Copy the link of the desired download
3) In linux terminal: 
wget <link>
Posted by: Guest on February-05-2022
2

create anaconda environment in shell

conda create -n env_name

#To create environment and install package (eg. python version 3.3)
conda create -n env_name python=3.3

#To use an env, you need to activate the environment:
conda activate env_name

#To see a list of all env you've created:
conda env list
Posted by: Guest on September-13-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language