Skip to content

🧀 Wheels

✅ Use the projects as dependencies or command line tools!

Wheels from the Python Package Index (PyPI)

Download wheels from all the projects:

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

Unlimited power for you now, support my work to keep it alive!

You can now import the projects in your scripts or type their name for a command line:

  • Check the project's repository for a Examples folder with Python scripts
  • Run directly e.g. shaderflow basic main to open a demo shader scene

See the project's website page for documentation and usage!

📦 Directly with uv

Check their Tools/uv documentation for extra info!

You can run the latest stable release of project with uvx like so:

Command
1
uvx shaderflow basic main

Or the latest development version directly from git main:

Command
1
uvx --from git+https://github.com/BrokenSource/DepthFlow depthflow gradio

♻️ Uninstalling

Apart from uninstalling the package and/or deleting the virtual environment:

Workspaces: Where data, models, versions, cache of the projects are stored

All project's Workspaces are located in your platform's User Data directory:

Windows C:\\Users\(...)\AppData\Local\BrokenSource
MacOS ~/Library/Application Support/BrokenSource
Linux ~/.local/share/BrokenSource

Models: PyTorch, HuggingFace, TorchHub downloads models on:

Windows C:\\Users\(...)\.cache\{huggingface,transformers,torch}
MacOS ~/Library/Caches/{huggingface,transformers,torch}
Linux ~/.cache/{huggingface,transformers,torch}

Package manager cache:

Either run uv cache prune or uv cache dir to locate wheel downloads caches, should be at:

Windows C:\\Users\(...)\AppData\Local\uv
MacOS ~/Library/Caches/uv
Linux ~/.cache/uv

Either run pip cache purge or pip cache dir to locate wheel download caches, should be at:

Windows C:\\Users\(...)\AppData\Local\pip
MacOS ~/Library/Caches/pip
Linux ~/.cache/pip

Either run poetry cache clear or poetry cache list to locate caches and venvs, should be at:

Windows C:\\Users\(...)\AppData\Local\pypoetry
MacOS ~/Library/Caches/pypoetry
Linux ~/.cache/pypoetry

Either run pdm cache clear or pdm cache list to locate wheel downloads caches, should be at:

Windows C:\\Users\(...)\AppData\Local\pdm
MacOS ~/Library/Caches/pdm
Linux ~/.cache/pdm