mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 10:02:10 +02:00

* pages/*, style-guide: update pages, fix Markdown (commit 1) * Update pages * style-guide.de: update page * Apply suggestions from code review Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com> * Apply suggestions from code review Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com> * pip3: remove search command * rpm: update path placeholder Co-authored-by: pixel <pixel+github@chrissx.de> * Update pages/linux/pkgfile.md Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com> --------- Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com> Co-authored-by: pixel <pixel+github@chrissx.de>
709 B
709 B
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 --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}}