2022-10-19 17:29:07 +01:00
|
|
|
# mamba repoquery
|
|
|
|
|
|
|
|
> Efficiently query conda and mamba package repositories and package dependencies.
|
|
|
|
> More information: <https://mamba.readthedocs.io/en/latest/user_guide/mamba.html#repoquery>.
|
|
|
|
|
|
|
|
- Search for all available versions of a particular package:
|
|
|
|
|
2023-08-26 18:30:06 +01:00
|
|
|
`mamba repoquery search {{package}}`
|
2022-10-19 17:29:07 +01:00
|
|
|
|
|
|
|
- Search for all packages satisfying specific constraints:
|
|
|
|
|
|
|
|
`mamba repoquery search {{sphinx<5}}`
|
|
|
|
|
|
|
|
- List the dependencies of a package installed in the currently activated environment, in a tree format:
|
|
|
|
|
|
|
|
`mamba repoquery depends --tree {{scipy}}`
|
|
|
|
|
|
|
|
- Print packages in the current environment that require a particular package to be installed (i.e. inverse of `depends`):
|
|
|
|
|
|
|
|
`mamba repoquery whoneeds {{ipython}}`
|