mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
38 lines
825 B
Plaintext
38 lines
825 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# conda config
|
|
|
|
> Modify configuration values in `.condarc`.
|
|
> More information: <https://docs.conda.io/projects/conda/en/latest/commands/config.html>.
|
|
|
|
- Show all configuration values:
|
|
|
|
`conda config --show`
|
|
|
|
- Show current value of a configuration option:
|
|
|
|
`conda config --show {{config_option}}`
|
|
|
|
- Set a configuration value:
|
|
|
|
`conda config --set {{key}} {{value}}`
|
|
|
|
- Remove a configuration value:
|
|
|
|
`conda config --remove {{key}} {{value}}`
|
|
|
|
- Append a value to an existing configuration key list:
|
|
|
|
`conda config --append {{key}} {{value}}`
|
|
|
|
- Prepend a value to an existing configuration key list:
|
|
|
|
`conda config --prepend {{key}} {{value}}`
|
|
|
|
- Describe given configuration option:
|
|
|
|
`conda config --describe {{config_option}}`
|