Files
cheatsheet-tldr/tldr/conda-config
2025-10-19 00:22:04 +00:00

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}}`