-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconda_commands.txt
More file actions
36 lines (26 loc) · 836 Bytes
/
conda_commands.txt
File metadata and controls
36 lines (26 loc) · 836 Bytes
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
SOURCE:
https://uoa-eresearch.github.io/eresearch-cookbook/recipe/2014/11/20/conda/
https://conda.io/en/latest/index.html
https://kapeli.com/cheat_sheets/Conda.docset/Contents/Resources/Documents/index
create env:
conda create -n "ENV_HERE" python=X.X
delete env:
conda env remove -n "ENV_HERE"
list env:
conda env list
list python versions:
conda search "^python$"
activate env:
conda activate ENV_HERE
deactivate env:
conda deactivate ENV_HERE
manages packages in activated env:
conda install/uninstall PACKAGE
(use pip if conda does not have it in its registry)
create conda pypy environment:
https://conda-forge.org/blog/posts/2020-03-10-pypy/
https://stackoverflow.com/a/62173136
conda create -n <NAME>
conda activate <NAME>
conda install -c conda-forge pypy3.X
# i think the -c is for the channel name