Skip to content

Commit 43657bf

Browse files
committed
Update installing_Python.md
1 parent 124356d commit 43657bf

1 file changed

Lines changed: 10 additions & 8 deletions

File tree

notebooks/installing_Python.md

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -115,26 +115,28 @@ to create a new environment using conda the general procedure is as follows (in
115115
116116
some examples below
117117

118-
```
118+
```markdown
119119
create 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
122122
create 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
128128
create 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
131131
remove 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

0 commit comments

Comments
 (0)