# ext-whl **Repository Path**: kumatea/ext-whl ## Basic Information - **Project Name**: ext-whl - **Description**: Extended Python wheels (whl) from the PyPI repository - **Primary Language**: HTML - **License**: MIT - **Default Branch**: main - **Homepage**: https://ext.kmtea.eu - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-04-06 - **Last Updated**: 2024-03-23 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # ext-whl Extended Python wheels (whl) This project provides pre-built wheels of popular packages. ### Add to pip ```bash pip config set global.extra-index-url https://ext.kmtea.eu/simple ``` ### Temporary use ```bash pip install --prefer-binary --extra-index-url https://ext.kmtea.eu/simple ``` The `--prefer-binary` option is to ensure that once the source updates, the binary will still be used. You may dismiss it at your will. An alternative way is to use the `--find-links` option, which is not recommended because the size of the index is large: ```bash pip install --prefer-binary --find-links https://ext.kmtea.eu/wheels.html ``` If you have trouble accessing GitHub Pages, you may try the CDN hosted by CloudFlare: ```bash pip install --prefer-binary --extra-index-url https://ext.kmtea.eu/cdn ``` ```bash pip install --prefer-binary --find-links https://ext.kmtea.eu/wheels-cdn.html ``` ## Others This project contains wheels from: * [pypy-wheels](https://github.com/KumaTea/pypy-wheels) * [riscv-wheels](https://github.com/KumaTea/riscv-wheels) * [musl-wheels](https://github.com/KumaTea/musl-wheels)