Skip to main content

Usage

anaconda repo search <NAME> [-l <#>] [-o <#>] [-s <COLUMN>] [-f <FAMILY>] [-p <PLATFORM>]
Replace <NAME> with the package name to search for.
Replace <#> with a number for —limit (-l) or —offset (-o).
Replace <COLUMN> with the sort column (use - prefix for descending).
Replace <FAMILY> with an artifact family (for example, conda, python, notebook).
Replace <PLATFORM> with a platform (for example, linux-64, osx-64, noarch).

Description

Searches the repository for packages and artifacts matching the given name. You can filter by artifact family, platform, and control sort and pagination.

Options

Option
Default
Description
<NAME>
Package name to search for (positional argument)
-l, --limit <#>
50
Maximum number of results to display
-o, --offset <#>
0
Offset when displaying results
-s, --sort <COLUMN>
download_count
Sort by column (use ’-’ prefix for descending)
-f, --family <FAMILY>
Filter by artifact family: conda, python, cran, anaconda_project, anaconda_env, notebook, gra
-p, --platform <PLATFORM>
Filter by platform (for example, linux-64, osx-64, noarch)
-h, --help
Show help for this command

Examples

Search for a package by name
anaconda repo search numpy
Search with limit and artifact family
anaconda repo search "data" --limit 20 --family conda
Search and sort by downloads (descending)
anaconda repo search requests --sort -download_count