Wheels
Check this page for all the packages I maintain!
Preferably pin the package version ==x.y.z
on pyproject.toml
for stability!
♻️ 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 |