Skip to content

Commit d25233f

Browse files
committed
Update installing_Python.md
1 parent 86acbde commit d25233f

1 file changed

Lines changed: 4 additions & 6 deletions

File tree

notebooks/installing_Python.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -123,15 +123,13 @@ create an environment with a specific version of Python
123123
>conda create --name new_env python=3.8.1
124124
125125
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
126+
>conda create --name SCIENV numpy scipy matplotlib jupyterlab
127127
128128
create an environment named "image" with the library scikit-image and all the neccesary dependencies
129129
>conda create --name image scikit-image
130130
131131
remove an existing environment (make sure you are not in the environment you want to remove)
132132
>conda env remove --name <ENV NAME>
133-
or
134-
>conda remove --name <ENV NAME> --all
135133
```
136134

137135

@@ -154,12 +152,12 @@ This will create a new conda environment called with the name defined within the
154152

155153
To create an ``environment.ylm`` file from a specific conda environment do as follows
156154

157-
```
158-
>conda activate my_env
155+
```markdown
156+
>conda activate <ENV NAME>
159157
>conda env export > environment.yml
160158
```
161159

162160
This command will export the list of packages and their versions that are installed in the current active conda environment so that you can quickly share it with anyone.
163161

164162
> [!TIP]
165-
> Sharing Conda environments with other researchers facilitates reproducibility in research. So we encourage you to create and share environment.yml files in which you have conducted the data analysis every time you make a scientific publication.
163+
> Sharing conda environments with other researchers facilitates reproducibility in research. So we encourage you to create and share environment.yml files in which you have conducted the data analysis every time you make a scientific publication.

0 commit comments

Comments
 (0)