mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-09 13:46:29 +00:00
30 lines
559 B
Plaintext
30 lines
559 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# conda info
|
|
|
|
> Display details about the conda installation.
|
|
> More information: <https://docs.conda.io/projects/conda/en/latest/commands/info.html>.
|
|
|
|
- Show all information:
|
|
|
|
`conda info {{[-a|--all]}}`
|
|
|
|
- Display base environment path:
|
|
|
|
`conda info --base`
|
|
|
|
- List all conda environments:
|
|
|
|
`conda info {{[-e|--envs]}}`
|
|
|
|
- List environment variables:
|
|
|
|
`conda info {{[-s|--system]}}`
|
|
|
|
- Display list of channels with tokens exposed:
|
|
|
|
`conda info --unsafe-channels`
|