Prebuilt PyPy wheels of the most popular packages
- See also: RISC-V Wheels
pip install <package> --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:
pip install <package> --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:
pip install <package> --prefer-binary --extra-index-url https://ext.kmtea.eu/cdn
pip install <package> --prefer-binary --find-links https://ext.kmtea.eu/wheels-cdn.html
I'm personally impressed by the conception and the speed of PyPy.
However, PyPy works best with pure Python but not C extensions, making it lacks some prebuilt wheels of the most popular packages.
I have made prebuilt wheels before, so this project is not too hard for me.
- The most popular packages index is generated by hugovk/top-pypi-packages
- Including Christoph Gohlke's Windows Binaries
- The wheels above are downloaded automatically using jaapvandervelde/gohlkegrabber's script