conda pypi index#

Index a directory of .whl files to generate repodata.json

usage: conda pypi index [-h] [--base-url BASE_URL] DIRECTORY

Positional Arguments#

DIRECTORY

Directory containing .whl files to index

Named Arguments#

--base-url

Base URL for the channel (e.g. https://packages.example.com/). When omitted, each entry uses a file:// URI for each wheel file.

Creates a local conda channel from a collection of wheel files.

Examples: Index a directory of wheel files to create a local conda channel:

conda pypi index path/to/my_wheels/

Use the generated channel with conda:

conda install -c file:///path/to/my_wheels some-package