Skip to main content
Packages are complete, ready-to-use pieces of software that extend the capabilities of a programming environment. They make it possible to reuse code written by others, so you don’t have to build everything yourself or worry about manually installing dependencies. Packages contain all the files, metadata, and instructions needed to install and run that software in your environment. In the conda ecosystem, packages are the building blocks that make installing open-source software fast and reliable. Conda can install and manage these packages within environments on your machine. Conda takes care of downloading the correct versions for your platform, resolving dependencies, and ensuring everything works together smoothly.

How packages are made

Every package begins as source code written by its developers. Before you can install it, that source code must be bundled into a format that works across operating systems. This process is called building, and it creates a package file (often referred to as an artifact in build documentation) that’s ready for installation. In the conda ecosystem, this build process is handled by conda-build, which compiles source code (if needed), specifies dependencies, and creates installable packages that can be shared through conda channels and installed into environments.

Package types

There are many kinds of software packages, but within the conda ecosystem the most common types you’ll work with are conda packages and Python packages.
For more information about managing packages with conda, see Packages.

Where packages are stored

Packages are stored inside the environment directories where they are installed. Each conda environment keeps its own set of packages in a separate directory, ensuring that software in one environment doesn’t interfere with another. Conda also keeps a local cache of downloaded package files, so it doesn’t need to download the same package again when you install it in another environment. This reduces network usage and saves disk space. For more information about where conda stores environments on your system, see Where environments are stored.