> ## Documentation Index
> Fetch the complete documentation index at: https://bakefile.wisl.dev/llms.txt
> Use this file to discover all available pages before exploring further.

> ## Agent Instructions
> bakefile is a Python task runner with two CLIs: bake runs tasks from bakefile.py, bakefile manages the project. It is not a service or platform.
> Tasks are methods on Bakebook classes in bakefile.py, decorated with @command. Subprocesses run through self.ctx.run().
> Examples are backed by tests; copy them verbatim.

# Tasks use the wrong Python interpreter

> bake, bakefile env, and bakefile export reinvoke under the bakefile's Python. Check which interpreter each command uses with bakefile which and bakefile find-python.

`bake`, `bakefile env`, and `bakefile export` reinvoke themselves under the bakefile's Python. If a module is importable in your shell but not from a task, check which interpreter each command uses:

```bash theme={"theme":{"light":"github-light","dark":"github-dark"}}
bakefile which
bakefile find-python
```

See the [bakefile CLI](/cli/bakefile) for the full breakdown.
