Skip to main content

conda-store (core)

The conda-store repository on GitHub consists of two separate, yet related, packages:

  • conda-store-server: web server and workers that together provide the conda-store "service" through a REST API
  • conda-store (client): a client that interacts with the service to offer a user-facing command line interface

Pre-requisites

warning

conda is a hard requirement for conda-store and since it is not pip installable you need to have conda installed before using conda-store.

Quick start

  1. Create and activate a new conda environment:
conda create -n conda-store-env python=<Python version of choice>
conda activate conda-store-env
  1. Install conda-store with conda or pip:
conda install -c conda-forge conda-store conda-store-server constructor
  1. Start a standalone local instance and use the conda-store UI
conda-store-server  --standalone

You can then access conda-store at localhost:8080 of the machine running it.

  1. Use the CLI
conda-store --help