Skip to content

Download

The one-command route, direct downloads, current source, and screenshots all match Codemble v0.19.2.

Direct

Download v0.19.2

GitHub mirrors the exact wheel and source archive published to PyPI, beside one plain-text SHA256 ledger.

Try this exact release
uvx --from codemble==0.19.2 codembleOne isolated command, pinned to the screens on this site.
Keep the command
pipx install codemble==0.19.2An isolated app environment with codemble on your path.
Install from a local file
Wheel downloadThe Codemble package and production web app travel together; first-time installation still needs its Python dependencies online or already cached. Node.js is not needed.
Contribute
Source checkoutAn editable install plus the repository verification gates.

The same SHA256 digests are published in SHA256SUMS.txt, the GitHub asset ledger, and PyPI metadata:

8d6183d2d7166bb6f84490026f9057e12acbbe6361ebbcc43727bc8f5e7492a6 codemble-0.19.2-py3-none-any.whl
b570ecc329e4aca79cbf34bca60674130b71470e02c049320e5021f533e50ad7 codemble-0.19.2.tar.gz

To check the wheel on macOS or Linux:

Terminal window
printf '%s %s\n' \
8d6183d2d7166bb6f84490026f9057e12acbbe6361ebbcc43727bc8f5e7492a6 \
codemble-0.19.2-py3-none-any.whl | shasum -a 256 -c -

Then install it into an isolated app environment:

Terminal window
pipx install ./codemble-0.19.2-py3-none-any.whl
codemble --version

The expected version is 0.19.2.

Terminal window
git clone --branch v0.19.2 --depth 1 https://github.com/udhawan97/Codemble.git
cd Codemble
python -m venv .venv
source .venv/bin/activate # Windows: .venv\Scripts\activate
pip install -e .
codemble

This checks out and runs the same v0.19.2 app with an editable Python environment. Continue with Installation for provider setup and failure boundaries, or Build from source for the full contributor gates.