- How to Use This Guide
- Goals for the Environment
- Your Platform Setup
- Workflow 1: Locking a New Project
- Workflow 2: Locking an Existing Project (TBD)
- Reproduce
- Upgrade
- Debugging
- Terms
- References and Resources
- Versions
This is a guide on how to produce a reproducible and upgradeable environment for Python applications. A great deal of inspiration came from a pythonspeed.com article about this very topic.4 While the article is a wonderful resource, I needed more so I developed this guide.
You can use the table of contents to get a quick look at topics. Or you can skip ahead to Your Platform Setup which is the beginning of the walkthrough.
Ultimately, this guide is just that, a guide. The goal was to make the concepts easy to follow so that you can apply it to your use case. You may use a different platform than this guide but hopefully still benefit from the content.
- I use
pipxfor parts of this guide, you may choose not to. - My platform may not be your platform so keep an eye out for incompatible commands.
- For simplicity, the guide assumes no explicit versions of packages.
Reproducible: The environment can be reproduced across platforms. Upgradeable: Packages in the environment can be easily changed (e.g., version, new package, etc.)
Sometimes a package installed via conda (even using the conda-forge channel) breaks my environment. I have found using pip as the exception to the rule has resolved most of these issues.
Solving the dependencies of dependencies for one operating system is time consuming. Out of the box, conda-lock will try to solve for 3 different operating systems (i.e., linux-64, osx-64, and win-64). However, conda recently announced partnering with a mamba solver. You could configure your conda instance to use a faster solver like this one. This is beyond the scope of this walkthrough. Regardless, it will still take time.
Using pipx to install conda-lock allows you to have peace of mind about running the package outside of your conda environment (even your conda "base" environment). Alternatively, you could install it in your conda "base," but I ran into issues that way and this walkthrough will not cover that angle.
A command I like to use is,
(base) $ conda list | grep PACKAGE_NAMEThis should show you the package with the version.
"Your platform" is the platform being used by you from a global perspective. Your environment is going to be the place we initialize the process of standardizing the environment for the goals listed above. By the end of this guide, you should be able to share the environment to another platform.
- pipx — "...help you install and run end-user applications written in Python"
- conda — "Package, dependency and environment management for any language..."
- pip — "...the package installer for Python"
- conda-lock — "...a lightweight library that can be used to generate fully reproducible lock files for conda environments."
- conda-forge — "A community-led collection of recipes, build infrastructure and distributions for the conda package manager."
Find more detailed guides to installing these tools on their websites below.
- Install
pipx - Install
conda-lockviapipxor install'conda-lock[pip_support]'if you expect the need forpip - Install
conda
In an ideal world, you can do environment management workflow before you write one line of code.
If you have conda installed properly, your terminal should open like this,
(base) $- Change directories to your project. For the tutorial, the project is called
env-management-demo.
(base) $ cd env-management-demo- Create a new
condaenvironment for your project
(base) $ conda create -n env-management-demo -c conda-forge python- Activate your environment. Note that my environment name is the same as my project name. I do this, but you don't have to. This is indicated by how
(base)changes to(env-management-demo).
(base) $ conda activate env-management-demo
(env-management-demo) $- Before any other packages are installed, generate a
condaenvironment.ymlfile. This step will generate a file that will need some editing in a moment.
(env-management-demo) $ conda env export --from-history > environment.ymlenvironment.ymlwill populate with your current environment parameters and some configurations. It may look different from mine but your channels must match your actualcondachannels. I have noted which lines to remove.
(Optional) Check your channels
(env-management-demo) $ conda config --show channelsThe following shows a before and after of edits. You will see a # REMOVE next to changes.
Before...
# environment.yml
name: env-management-demo # REMOVE
channels:
- conda-forge
- defaults
dependencies:
- python
prefix: /Users/uname/miniconda3/envs/env-management-demo # REMOVEAfter...
# environment.yml
channels:
- conda-forge
- defaults
dependencies:
- python- Now add the platforms you want to support with this
conda-forgenon-standard format.
# environment.yml
channels:
- conda-forge
- defaults
dependencies:
- python
platforms: # This is non-standard and recommended by conda-lock.
- linux-64
- osx-64
- win-64
- osx-arm64 # For Apple Silicon, e.g. M1/M2- From now on, you will add packages manually to this document under the
dependenciessequence key unless you have to, for some reason, download a package using pip. Here is an example of that process:
(env-management-demo) $ conda install -c conda-forge pandas
...Then add it to the environment.yml (indicated by # NEW.)
# environment.yml
channels:
- conda-forge
- defaults
dependencies:
- python
- pandas # NEW
platforms:
- linux-64
- osx-64
- win-64
- osx-arm64- Once you are at a checkpoint in your code and ready to share it, you should generate a lockfile
conda-lock.ymlusing theconda-lockcommand.
(env-management-demo) $ conda-lock -f environment.yml
Locking dependencies for ['linux-64', 'osx-64', 'osx-arm64', 'win-64']...
...- Now that your environment is "locked," you can test this by creating a new environment from the
conda-lock.ymlfile.
(env-management-demo) $ conda deactivate
(base) $
(base) $ conda-lock install -n env-locked
INFO:root:Downloading and Extracting Packages
INFO:root:numpy-1.24.1
INFO:root:pandas-1.5.3
...
(base) $ conda activate env-locked
(env-locked) $- After testing this environment on your code, you can share the
conda-lock.ymlfile with other developers and have them run the code with the sameconda-lockcommand.
While this part of the tutorial is unfinished, you could get a pretty good idea of how to do this without this section. For now, you can continue to Reproduce. Good luck!
Once you have the environment locked into a conda-lock.yml multi-platform file, you will be able to reproduce the environment (i.e., create and activate it) with the following command as long as the file is in your current directory:
(base) $ conda-lock install -n NAME
(base) $ conda activate NAME
(NAME) $To minimize the size of the lockfile, you may want to render a single-platform lockfile for linux.
(base) $ conda-lock render -p linux-64
...The default file result is a file named conda-linux-64.lock. This lockfile can then be copied into an image and used from within the image.
conda create -n my-locked-env --file conda-linux-64.lock
Most work related to upgrading your environment requires manually updating your environment.yml you created in an earlier step. In the following examples, I will use the existing environment.yml to demonstrate upgrading.
Say there is a new version of pandas available and you want to update to the latest one. This is the simplest use case.
(base) $ conda-lock --update pandasWe have pandas installed, but of course we want to use matplotlib.
- Install
matplotlib
(base) $ conda install -c conda-forge matplotlib
...- Add
matplotlibto theenvironment.ymlfile.
# environment.yml
channels:
- conda-forge
- defaults
dependencies:
- python
- pandas
- matplotlib # NEW
platforms:
- linux-64
- osx-64
- win-64
- osx-arm64- Update the file using
conda-lock
(base) $ conda-lock --update matplotlib
Locking dependencies for ['linux-64', 'osx-64', 'osx-arm64', 'win-64']...
...Note: If you update to a specific version of a package, you will need to provide the version in the command. For example, matplotlib=3.5 should be included after the --update flag. This update flag is useful for the following:
- Updating to the latest version of a package (no version specified)
- Updating a package to a specific version
- Adding a new package
Sometimes conda does not have everything you need so you lean on pip for a dependency. conda-lock comes with pip support if you install it with the extra like so:
(base) $ pipx install 'conda-lock[pip_support]'
...
This allows you to add pip dependencies as needed.
- Install your package within your
condaenv withpip.
(env-management-demo) $ pip install fastapi
...- Update the
environment.yml.
# environment.yml
channels:
- conda-forge
- defaults
dependencies:
- python
- pandas
- matplotlib=3.5
- pip: # NEW
- fastapi # NEW
platforms:
- linux-64
- osx-64
- win-64
- osx-arm64- Update with the
conda-lockcommand.
(env-management-demo) $ conda deactivate
(base) $ conda-lock --update fastapi
Locking dependencies for ['linux-64', 'osx-64', 'osx-arm64', 'win-64']...
...
Downgrading is done by updating your environment.yml with the downgraded version of a package and then running the conda-lock command,
(base) $ conda-lock --update conda_package=versionOr, if it is a pip package (note the double ==),
(base) $ conda-lock --update pip_package==versionLast Update: February 6, 2023
This section will be updated as issues are discovered. If issues are discovered, they should be checked against the conda-lock repo linked below so contributors can be made aware.
Sometimes an error from conda-lock is vague and hard to debug. I am logging some fixes I have discovered during development.
Are the channels you have set in conda and your environment.yml file consistent? If not, make sure they are by editing your environment.yml file to match. Once I have found that deleting the existing conda-lock.yml file and trying again will resolve this issue.
platform : the OS being used for a task (e.g., MacOS, Windows, etc.)
- pypa.github.io — Global Python package manager
pipx - docs.conda.io — Environment manager
condavia miniconda - github.com — Cross-platform environment locker
conda-lock - pythonspeed.com — Reproducible and upgradable Conda environments with conda-lock
- github.com — Recommended direct dependency update path
- github.com — Optional groups of dependencies #7502
My local versions for reference.
System Version: macOS 13.0 (22A380)
Kernel Version: Darwin 22.1.0
conda 22.11.1
pipx 1.1.0
conda-lock 1.4.0, installed using Python 3.11.0
zsh 5.8.1 (x86_64-apple-darwin22.0)