Skip to content

Commit bddea6e

Browse files
defnvaryarpit1385
authored andcommitted
conda-config: add page (tldr-pages#18694)
* conda-config: add page * conda-config: remove trailing whitespaces * conda-config: follow style guide * conda-config: split flags and make a parameter more clear * conda-config: added backtick * conda-config: more changes * conda-config: a better first entry
1 parent 5421065 commit bddea6e

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

pages/common/conda-config.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
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}}`

0 commit comments

Comments
 (0)