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

conda repoquery — Advanced search for packages in a conda repository. More information: <https://docs.conda.io/project

Submitted by: @import:tldr-pages··
0
Viewed 0 times
conda repoquerycommandcondasearchcliadvancedforpackages

Problem

How to use the conda repoquery command: Advanced search for packages in a conda repository. More information: <https://docs.conda.io/projects/conda/en/latest/commands/repoquery/index.html>.

Solution

conda repoquery — Advanced search for packages in a conda repository. More information: <https://docs.conda.io/projects/conda/en/latest/commands/repoquery/index.html>.

Show available versions of the specified package:
conda repoquery search {{package}}


Show dependencies of the specified package:
conda repoquery depends {{package}}


Show packages that depend on the specified package:
conda repoquery whoneeds {{package}}

Code Snippets

Show available versions of the specified package

conda repoquery search {{package}}

Show dependencies of the specified package

conda repoquery depends {{package}}

Show packages that depend on the specified package

conda repoquery whoneeds {{package}}

Context

tldr-pages: common/conda repoquery

Revisions (0)

No revisions yet.