mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-16 05:49:01 +00:00
26 lines
623 B
Plaintext
26 lines
623 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# conda doctor
|
|
|
|
> Display a health report for your environment.
|
|
> More information: <https://docs.conda.io/projects/conda/en/latest/commands/doctor.html>.
|
|
|
|
- View report for the currently active environment:
|
|
|
|
`conda doctor`
|
|
|
|
- Specify an environment by name:
|
|
|
|
`conda doctor {{[-n|--name]}} {{environment_name}}`
|
|
|
|
- Specify an environment by its path:
|
|
|
|
`conda doctor {{[-p|--prefix]}} {{path/to/environment}}`
|
|
|
|
- Enable verbose output (Note: the `-v` flag can be repeated to increase verbosity):
|
|
|
|
`conda doctor {{[-v|--verbose]}}`
|