|
1 | 1 | # ext-whl |
2 | | -Extended Python wheels (whl) from the PyPI repository |
| 2 | +Extended Python wheels (whl) |
3 | 3 |
|
4 | | -This project provides pre-built wheels of popular packages for **ARM** / **ARM64** devices, |
5 | | -to save your time. |
| 4 | +This project provides pre-built wheels of popular packages. |
6 | 5 |
|
7 | | -**`pip install <package> -f https://ext.kmtea.eu/whl/stable.html`** |
| 6 | +```bash |
| 7 | +pip install <package> --prefer-binary --extra-index-url https://ext.kmtea.eu/simple |
| 8 | +``` |
8 | 9 |
|
9 | | -Backup link: `https://cf.ext.kmtea.eu/whl/stable.html` |
| 10 | +The `--prefer-binary` option is to ensure that |
| 11 | +once the source updates, the binary will still be used. |
| 12 | +You may dismiss it at your will. |
10 | 13 |
|
11 | | ---- |
| 14 | +An alternative way is to use the `--find-links` option, |
| 15 | +which is not recommended because the size of the index is large: |
12 | 16 |
|
13 | | -For development / testing wheels, please use this index: |
14 | | -**`https://ext.kmtea.eu/whl/dev.html`** |
| 17 | +```bash |
| 18 | +pip install <package> --prefer-binary --find-links https://ext.kmtea.eu/wheels.html |
| 19 | +``` |
15 | 20 |
|
16 | | -**`pip install <package> -f https://ext.kmtea.eu/whl/dev.html -f https://ext.kmtea.eu/whl/stable.html`** |
| 21 | +If you have trouble accessing GitHub Pages, |
| 22 | +you may try the CDN hosted by CloudFlare: |
17 | 23 |
|
18 | | ---- |
| 24 | +```bash |
| 25 | +pip install <package> --prefer-binary --extra-index-url https://ext.kmtea.eu/cdn |
| 26 | +``` |
19 | 27 |
|
20 | | -`whl` list: |
21 | | -* [packages-stdln.txt](docker/packages-stdln.txt) |
22 | | -* [packages-deps.txt](docker/packages-deps.txt) |
| 28 | +```bash |
| 29 | +pip install <package> --prefer-binary --find-links https://ext.kmtea.eu/wheels-cdn.html |
| 30 | +``` |
| 31 | + |
| 32 | +## Others |
| 33 | + |
| 34 | +This project contains wheels from: |
| 35 | + |
| 36 | +* [pypy-wheels](https://github.com/KumaTea/pypy-wheels) |
| 37 | +* [riscv-wheels](https://github.com/KumaTea/riscv-wheels) |
0 commit comments