Install & Compatibility
Where this runs
tested against v4.0.0 · pip install
no network on importno background threads
Install × environment matrix
Each cell = how many times install + import succeeded across repeated harness runs. Partial = flaky.
glibc = Debian/Ubuntu slim · musl = Alpine Linux
muslpy 3.10–3.95 runs
installs and imports cleanly · install 0.0s · import 2.050s · 21.1MB
glibcpy 3.10–3.95 runs
installs and imports cleanly · install 2.1s · import 1.818s · 22MB
23MB installed
● package 23MB
Code
Verified usage
Verified import paths — ran on the pinned version, not inferred.
Egg
✓ from zc.recipe.egg import Egg
✗ import Egg
Egg is not a top-level module; must import from zc.recipe.egg
Develop
✓ from zc.recipe.egg import Develop
✗ from zc.recipe import egg
Develop is not directly importable via 'zc.recipe.egg' submodule; use explicit import
Quick import of Egg recipe class. Actual usage is via zc.buildout configuration files, not direct Python calls.
from zc.recipe.egg import Egg
# Typically used within a buildout configuration, not standalone
# Example: eggs = ['somepackage'] in a buildout.cfg recipe section
Errors
Common errors & fixes
ImportError: No module named zc.recipe.egg
The package is not installed or installed in the wrong environment.
fixRun 'pip install zc.recipe.egg' in the target Python environment.
TypeError: 'module' object is not callable
Attempting to call zc.recipe.egg directly (e.g., zc.recipe.egg(...)) instead of using the class.
fixUse 'from zc.recipe.egg import Egg' and then instantiate Egg(...).
Upgrade
Version history
4.0.0latest on PyPI · released Nov 12, 2025
Audit
Dependencies
zc.buildoutrequiredRuntime dependency; recipe is used within buildout