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

mamba repoquery — Efficiently query conda and mamba package repositories and package dependencies. More information: <

Submitted by: @import:tldr-pages··
0
Viewed 0 times
commandmambacondaandcliqueryefficientlymamba repoquery

Problem

How to use the mamba repoquery command: Efficiently query conda and mamba package repositories and package dependencies. More information: <https://mamba.readthedocs.io/en/latest/user_guide/mamba.html#repoquery>.

Solution

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:
mamba repoquery search {{package}}


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 {{[-t|--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}}

Code Snippets

Search for all available versions of a particular package

mamba repoquery search {{package}}

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 {{[-t|--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}}

Context

tldr-pages: common/mamba repoquery

Revisions (0)

No revisions yet.