• Stars
    star
    260
  • Rank 157,189 (Top 4 %)
  • Language
    Rust
  • License
    BSD 3-Clause "New...
  • Created almost 3 years ago
  • Updated 29 days ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Rust crates to work with the Conda ecosystem.

An image of a snake in a box

Rattler: Rust crates for fast handling of conda packages

License Build Status Project Chat docs main

Rattler is a library that provides common functionality used within the conda ecosystem (what is conda & conda-forge?). The goal of the library is to enable programs and other libraries to easily interact with the conda ecosystem without being dependent on Python. Its primary use case is as a library that you can use to provide conda related workflows in your own tools.

Rattler is written in Rust and tries to provide a clean API to its functionalities (see: Components). With the primary goal in mind we aim to provide bindings to different languages to make it easy to integrate Rattler in non-rust projects.

Rattler is actively used within the https://prefix.dev backend.

Showcase

This repository also contains a binary (use cargo run to try) that shows some of the capabilities of the library. This is an example of installing an environment containing cowpy and all its dependencies from scratch (including Python!):

Installing an environment

Give it a try!

Before you begin, make sure you have the following prerequisites:

Follow these steps to clone, compile, and run the rattler project:

# Clone the rattler repository along with its submodules:
git clone --recursive https://github.com/mamba-org/rattler.git
cd rattler

# Set up an environment with the required dependencies for compiling rattler and libsolv:
micromamba create -f environment.yml
micromamba activate rattler-env

# Compile and execute rattler to create a JupyterLab instance:
cargo run --release --bin rattler create jupyterlab

The above command will execute the rattler executable in release mode. It will download and install an environment into the .prefix folder that contains jupyterlab and all the dependencies required to run it (like python)

Run the following command to start jupyterlab:

# on windows
.\.prefix\Scripts\jupyter-lab.exe

# on linux or macOS
 ./.prefix/bin/jupyter-lab

Voila! You have a working installation of jupyterlab installed on your system! You can of course install any package you want this way. Try it!

Contributing 😍

We would love to have you contribute! See the CONTRIBUTION.md for more info. For questions, requests or a casual chat, we are very active on our discord server. You can join our discord server via this link.

Components

Rattler consists of several crates that provide different functionalities.

  • rattler_conda_types: foundational types for all datastructures used withing the conda eco-system.
  • rattler_package_streaming: provides functionality to download, extract and create conda package archives.
  • rattler_repodata_gateway: downloads, reads and processes information about existing conda packages from an index.
  • rattler_shell: code to activate an existing environment and run programs in it.
  • rattler_solve: a backend agnostic library to solve the package satisfiability problem.
  • rattler_virtual_packages: a crate to detect system capabilities.
  • rattler: functionality to create complete environments from scratch using the crates above.
  • rattler-bin: an example of a package manager using all the crates above (see: showcase)

You can find these crates in the crates folder.

What is conda & conda-forge?

The conda ecosystem provides cross-platform, binary packages that you can use with any programming language. conda is an open-source package management system and environment management system that can install and manage multiple versions of software packages and their dependencies. conda is written in Python. The aim of Rattler is to provide all functionality required to work with the conda ecosystem from Rust. Rattler is not a reimplementation of conda. conda is a package management tool. Rattler is a library to work with the conda ecosystem from different languages and applications. For example, it powers the backend of https://prefix.dev.

conda-forge is a community-driven effort to bring new and existing software into the conda ecosystem. It provides tens-of-thousands of up-to-date packages that are maintained by a community of contributors. For an overview of available packages see https://prefix.dev.

More Repositories

1

conda

A system-level, binary package and environment manager running on all major operating systems and platforms.
Python
6,285
star
2

conda-pack

Package conda environments for redistribution
Python
519
star
3

conda-lock

Lightweight lockfile for conda environments
Python
461
star
4

constructor

tool for creating installers from conda packages
Python
453
star
5

conda-docs

Conda documentation
378
star
6

conda-build

Commands and tools for building conda packages
Python
375
star
7

grayskull

Grayskull 💀 - Recipe generator for Conda
Python
306
star
8

conda-libmamba-solver

The libmamba based solver for conda.
Python
188
star
9

pycosat

Python bindings to picosat (a SAT solver)
C
182
star
10

cookiecutter-conda-python

A cookiecutter template for conda packages using Python
Python
102
star
11

menuinst

Cross platform menu item installation
Python
34
star
12

conda-package-handling

Create and extract conda packages of various formats
Python
26
star
13

governance

The Conda & Conda-Incubator Governance Policy
Python
25
star
14

ceps

Conda Enhancement Proposals
19
star
15

conda-verify

Verify conda recipes and packages
Python
17
star
16

conda-prefix-replacement

CPR resuscitates packages in new locations
Python
11
star
17

infrastructure

A repo to report issues and have discussions about the conda infrastructure
Python
11
star
18

conda-index

conda index, formerly part of conda-build. Create channels from collections of packages.
Python
9
star
19

schemas

Conda file formats and schemas
Python
9
star
20

conda-package-streaming

An efficient library to read from new and old format .conda and .tar.bz2 conda packages.
Python
9
star
21

conda-plugin-template

Python
8
star
22

conda-content-trust

Signing and verification tools for conda
Python
7
star
23

conda-benchmarks

Benchmarking the conda project
Python
4
star
24

issue-tracker

A visualization of the issue count of conda org repositories over time.
Python
2
star
25

conda_build_test_recipe

This repo is used for testing conda-build
Python
2
star
26

actions

A collection of custom GitHub Actions for the conda org.
Python
1
star
27

test-cla

1
star
28

communications

Repo to organize conda communications work
1
star
29

conda-standalone

A standalone conda executable built with PyInstaller.
Python
1
star