HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

conda doctor — Display a health report for your environment. More information: <https://docs.conda.io/projects/cond

Submitted by: @import:tldr-pages··
0
Viewed 0 times
commandreporthealthforcliconda doctoryourdisplay

Problem

How to use the conda doctor command: Display a health report for your environment. More information: <https://docs.conda.io/projects/conda/en/latest/commands/doctor.html>.

Solution

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

Code Snippets

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

Context

tldr-pages: common/conda doctor

Revisions (0)

No revisions yet.