blob: ac147036bd88100121dd3d0af52356eb52e1304d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
|
---
jupyter:
jupytext:
text_representation:
extension: .md
format_name: markdown
format_version: '1.2'
jupytext_version: 1.3.2
kernelspec:
display_name: Python 3
language: python
name: python3
---
<!-- #region slideshow={"slide_type": "slide"} -->
An introduction to Conda
======================
<br/>
<br/>
<br/>
<br/>
<center>
August 12, 2021
</center>
<center>
Department of Aerospace Engineering, IIT Bombay
</center>
<center>
Prabhu Ramachandran
</center>
<!-- #endregion -->
<!-- #region slideshow={"slide_type": "slide"} -->
Agenda
------
- Introduction to conda
- Basic usage and practices
- Conda environments
<!-- #endregion -->
<!-- #region slideshow={"slide_type": "slide"} -->
Why
------
- Very popular
- Helps manage large, complex, binary packages
- Do not have to be superuser/administrator
<!-- #endregion -->
<!-- #region slideshow={"slide_type": "slide"} -->
Installation and setup
-------------
- Two popular installers: anaconda and miniconda
- Download/install miniconda for your operating system
- https://docs.conda.io/en/latest/miniconda.html
- Install it
- Activate it for your shell
<!-- #endregion -->
<!-- #region slideshow={"slide_type": "slide"} -->
Environments
---------
- Isolated Python universe
- Does not affect other environments
- Cheap to create
- Easy to maintain
<!-- #endregion -->
<!-- #region slideshow={"slide_type": "slide"} -->
Preliminaries
------
- Make sure you have installed conda
- Start a terminal and activate conda
<!-- #endregion -->
<!-- #region slideshow={"slide_type": "slide"} -->
Let us get started
---------
- List the existing environments
```bash
$ conda info --envs
```
- Avoid messing with the base environment
- Use help
```bash
$ conda --help
$ conda info --help
$ conda create --help
```
<!-- #endregion -->
<!-- #region slideshow={"slide_type": "slide"} -->
Creating an environment
--------------
```bash
$ conda create --name myenv python numpy matplotlib ipython
```
or
```bash
$ conda create -n myenv python numpy matplotlib ipython
```
At least:
```bash
$ conda create -n myenv python
```
<!-- #endregion -->
<!-- #region slideshow={"slide_type": "slide"} -->
Specifying a Python version
-----------------------------
```bash
$ conda create -n myenv python=3.8
```
<!-- #endregion -->
<!-- #region slideshow={"slide_type": "slide"} -->
Activating and using environments
----------------------------------
```bash
$ conda activate myenv
(myenv) $
```
or
```bash
$ source activate myenv
(myenv) $
```
- Install packages
```bash
$ conda install scipy pandas
```
- Search
```bash
$ conda search scikit-learn
```
<!-- #endregion -->
<!-- #region slideshow={"slide_type": "slide"} -->
Activating and using environments
----------------------------------
- List
```bash
$ conda list
$ conda list -n otherenv
```
- Remove packages
```bash
$ conda uninstall scikit-learn
```
<!-- #endregion -->
<!-- #region slideshow={"slide_type": "slide"} -->
Updating packages/environments
----------------------------------
- Inside an environment
```bash
(myenv) $ conda update scipy
```
- In another environment
```bash
$ conda update -n myenv scipy
```
- Everything
```bash
$ conda update --all
```
<!-- #endregion -->
<!-- #region slideshow={"slide_type": "slide"} -->
Deactivating and removing an environment
--------------------------------
```bash
(myenv) $ conda deactivate
```
or
```bash
(myenv) $ deactivate
```
Switch to another:
```bash
(myenv) $ conda activate test
(test) $
```
Remove the environment
```bash
$ conda remove -n myenv --all
```
<!-- #endregion -->
<!-- #region slideshow={"slide_type": "slide"} -->
Conda channels
---------------
- Identified by a name: defaults, conda-forge
- Many user-created channels
- conda-forge among the most useful
- Adding at the top
```bash
$ conda config --add channels conda-forge
```
- Adding at the bottom
```bash
$ conda config --append channels new_channel
```
- Install from specific channel
```bash
$ conda install -c conda-forge pytorch
```
<!-- #endregion -->
<!-- #region slideshow={"slide_type": "slide"} -->
Sharing environments
-------------
- Dump list of packages
```bash
$ conda env export -n myenv > environment.yml
```
- Create
```bash
$ conda env create --file environment.yml
```
- OS specific:
```bash
$ conda list --explicit > pkgs.txt
```
```bash
$ conda create -n junk --file pkgs.txt
```
<!-- #endregion -->
<!-- #region slideshow={"slide_type": "slide"} -->
Miscellaneous
-------------
- Update conda
```bash
$ conda update conda
```
- Detailed info
```bash
$ conda search scipy --info
```
```bash
$ conda search -c conda-forge scipy=1.1
$ conda search -c defaults "scipy>1.7" --info
```
<!-- #endregion -->
<!-- #region slideshow={"slide_type": "slide"} -->
Learning more
-------------
- https://conda.io/projects/conda/en/latest/user-guide/index.html
- https://conda.io/projects/conda/en/latest/user-guide/cheatsheet.html
<!-- #endregion -->
|