Skip to content

Commit f5e88c2

Browse files
committed
update readme
1 parent 8025946 commit f5e88c2

File tree

14 files changed

+29
-195
lines changed

14 files changed

+29
-195
lines changed

.dockerignore

Lines changed: 0 additions & 1 deletion
This file was deleted.

README.md

Lines changed: 28 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,37 @@
11
# ext-whl
2-
Extended Python wheels (whl) from the PyPI repository
2+
Extended Python wheels (whl)
33

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.
65

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+
```
89

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.
1013

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:
1216

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+
```
1520

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:
1723

18-
---
24+
```bash
25+
pip install <package> --prefer-binary --extra-index-url https://ext.kmtea.eu/cdn
26+
```
1927

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)

build.bat

Lines changed: 0 additions & 23 deletions
This file was deleted.

build.sh

Lines changed: 0 additions & 40 deletions
This file was deleted.

docker/build-wheels.sh

Lines changed: 0 additions & 18 deletions
This file was deleted.

docker/local-whl.py

Lines changed: 0 additions & 26 deletions
This file was deleted.

docker/packages-deps.txt

Lines changed: 0 additions & 2 deletions
This file was deleted.

docker/packages-stdln.txt

Lines changed: 0 additions & 7 deletions
This file was deleted.

docker/py310/Dockerfile

Lines changed: 0 additions & 13 deletions
This file was deleted.

docker/py36/Dockerfile

Lines changed: 0 additions & 13 deletions
This file was deleted.

0 commit comments

Comments
 (0)