Lockfiles for conda
Project description
conda-lock
Conda lock is a lightweight library that can be used to generate fully reproducible lock files for conda environments.
It does this by performing multiple solves for conda targeting a set of platforms you desire lockfiles for.
This also has the added benefit of acting as an external presolve for conda as the lockfiles it generates results in the conda solver not being invoked when installing the packages from the generated lockfile.
why?
Conda environment.yaml files are very useful for defining desired environments but there are times when we want to be able to EXACTLY reproduce an environment by just installing and downloading the packages needed.
This is particularly handy in the context of a gitops style setup where you use conda to provision environments in various places
Dockerfile example
In order to use conda-lock in a docker-style context you want to add the lockfile to the
docker container. In order to refresh the lock file just run conda-lock
again.
Dockerfile
environment.yaml
* conda-linux-64.lock
# Dockerfile
# Build container
FROM continuumio/miniconda:latest as conda
ADD conda-linux-64.lock /locks/conda-linux-64.lock
RUN conda create -p /opt/env --copy --file /locks/conda-linux-64.lock
# Primary container
FROM gcr.io/distroless/base-debian10
COPY --from=conda /opt/env /opt/env
installation
pip install conda-lock
usage
# generate the lockfiles
conda-lock -f environment.yml -p osx-64 -p linux-64
# create an environment from the lockfile
conda create -n my-locked-env --file conda-linux-64.lock
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file conda_lock-0.7.0.tar.gz
.
File metadata
- Download URL: conda_lock-0.7.0.tar.gz
- Upload date:
- Size: 46.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.50.0 CPython/3.8.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e28a956b876c2a860a5035e130a78e5c31ece863382fdd34cdb71df4a7f8bbf7 |
|
MD5 | 8a858cee152383271b9ff2fbc9a2bb38 |
|
BLAKE2b-256 | 8fdd3ba93c392a1a78f6f4728ed1c489927351af1b06af4520c3adfcb33b58a8 |
Provenance
File details
Details for the file conda_lock-0.7.0-py3-none-any.whl
.
File metadata
- Download URL: conda_lock-0.7.0-py3-none-any.whl
- Upload date:
- Size: 13.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.50.0 CPython/3.8.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c504a65025ab3b11308297874185622e0364508a954a41bb0e2c3b2b429720cb |
|
MD5 | dede75748993094dc770c2068efa79c6 |
|
BLAKE2b-256 | 892a02c4cd38ed93b5b880dcad860bba2e4585d1c132ad08a5de207537ee9e3f |