Files
cheatsheet-tldr/tldr/conda-repoquery
2025-09-25 00:19:09 +00:00

22 lines
538 B
Plaintext

---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# 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}}`