File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -115,26 +115,28 @@ to create a new environment using conda the general procedure is as follows (in
115115
116116some examples below
117117
118- ```
118+ ``` markdown
119119create an environment named "main" with the last version of Python supported by conda
120- >conda create -n main python
120+ > conda create --name main python
121121
122122create an environment with a specific version of Python
123- >conda create --n new_env python=3.8.1
123+ > conda create --name new_env python=3.8.1
124124
125- create an environment named "SCIENV" with the libraries numpy, scipy, matplolib and jupyterlab (conda will include all the necessary dependencies)
126- >conda create --n SCIENV numpy scipy matplolib jupyterlab
125+ create an environment named "SCIENV" with the libraries numpy, scipy, matplolib and jupyterlab (conda will take care of including all the necessary dependencies)
126+ > conda create --name SCIENV numpy scipy matplolib jupyterlab
127127
128128create an environment named "image" with the library scikit-image and all the neccesary dependencies
129- >conda create --n image scikit-image
129+ > conda create --name image scikit-image
130130
131131remove an existing environment
132- >conda env remove -n <ENV NAME>
132+ > conda env remove --name <ENV NAME >
133+ or
134+ > conda remove --name <ENV NAME > --all
133135```
134136
135137
136138
137- More info here: https://conda.io/projects/conda/en/latest/user-guide/tasks/manage-environments.html
139+ More info here: https://docs. conda.io/projects/conda/en/latest/user-guide/tasks/manage-environments.html
138140
139141### Using environment.ylm (YALM) files
140142
You can’t perform that action at this time.
0 commit comments