File tree Expand file tree Collapse file tree 1 file changed +32
-0
lines changed Expand file tree Collapse file tree 1 file changed +32
-0
lines changed Original file line number Diff line number Diff line change 1+ # conda config
2+
3+ > Modify configuration values in ` .condarc ` .
4+ > More information: < https://docs.conda.io/projects/conda/en/latest/commands/config.html > .
5+
6+ - Show all configuration values:
7+
8+ ` conda config --show `
9+
10+ - Show current value of a configuration option:
11+
12+ ` conda config --show {{config_option}} `
13+
14+ - Set a configuration value:
15+
16+ ` conda config --set {{key}} {{value}} `
17+
18+ - Remove a configuration value:
19+
20+ ` conda config --remove {{key}} {{value}} `
21+
22+ - Append a value to an existing configuration key list:
23+
24+ ` conda config --append {{key}} {{value}} `
25+
26+ - Prepend a value to an existing configuration key list:
27+
28+ ` conda config --prepend {{key}} {{value}} `
29+
30+ - Describe given configuration option:
31+
32+ ` conda config --describe {{config_option}} `
You can’t perform that action at this time.
0 commit comments