Skip to content

🧀 From PyPI

The most reliable way to use the Projects • Run the package commands or as a python import.

Recommended for: Basic users, advanced users, developers.

⚡️ Installing

Follow their quick start, install packages with:

1
python3 -m pip install {package}

Follow their quick start, install packages with:

1
uv add {package}

Follow their quick start, install packages with:

1
poetry add {package}

Follow their quick start, install packages with:

1
rye add {package} --pin equal

Follow their quick start, install packages with:

1
pdm add {package}

...where {package} is the name of the project you want to install:

depthflow, shaderflow, broken-source, pianola, spectronote, turbopipe


✅ Preferably pin the package version ==x.y.z on pyproject.toml for stability!

Python 64 bits interpreter is required

Reason: Some or many dependencies don't have precompiled wheels or will fail to compile for 32 bits

  • ✅ Check your installation with: python3 -c "import struct; print(struct.calcsize('P') * 8)"
  • This is specially important on Windows as python.org front page might link to 32 bit versions

⭐️ Usage

Go to the project tab of your interest above and see the quickstart!

🚀 Upgrading

Simply upgrade the python dependency:

1
python3 -m pip install --upgrade {package}

1
uv add {package}

1
poetry update {package}

1
rye add {package}

1
pdm update {package}

♻️ Uninstalling

See the Uninstalling page