forked from cheat/cheatsheets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
conda
40 lines (29 loc) · 1010 Bytes
/
conda
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
---
tags: [ packaging ]
---
# To list environments
conda env list
# To initialise an environment
conda create --name <environment_name>
# To initialise an environment with python3.10
conda create --name <environment_name> python=3.10
# To install from a file
conda install --file <requirements.txt>
# To clone an environment
conda create --clone <old_environment_name> --name <new_environment_name>
# To activate a virtual environment
conda activate <environment_name>
# To deactivate a virtual environment
conda deactivate
# To remove an environment
conda env remove --name <environment_name>
# or
conda env remove --prefix <path/to/env>
# To list all packages in an environment
conda list --name <environment_name>
# To list packages in an activated environment
conda list
# To export an activated environment
conda env export > <environment.yml>
# To export an activated environment, listing only manually installed packages (no dependencies)
conda env export --from-history > <environment.yml>