mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-12 17:47:48 +00:00
22 lines
538 B
Plaintext
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}}`
|