StatisKit / conda-tools

Tools for Easing the Usage of Conda

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

https://travis-ci.org/StatisKit/conda-tools.svg?branch=master https://ci.appveyor.com/api/projects/status/uwqs5ft5c5ehcmj4/branch/master

conda-tools: Tools for easing the usage of Conda for developers

conda-tools contains tools for:

  1. Downloading Conda dependencies of recipes. This allows to:
    • easily build your own recipes in offline mode,
    • ensure reproducibility of scripts using Conda builds or installs.
  2. Buildind a multiple Conda recipes. This allows to:
    • easily build recipes for a release.

Installation

conda install -n root conda-tools

Download recipe dependencies

You can easily download all dependencies of conda recipes

conda download . --build --run

Or equivalently

conda download .

If you want to download only:

  • build dependencies use,

    conda download . --no-run
  • run dependencies use,

    conda download . --no-build

To specify custom channels, use the --channels option

conda download . --channels statiskit conda-forge default

About

Tools for Easing the Usage of Conda

License:Apache License 2.0


Languages

Language:Python 89.1%Language:Batchfile 5.5%Language:Shell 5.4%